$(document).ready(function() { function show_month() { var terms = $('[name="term"]'); if ($('[name="payform"]:checked').val() == '0'){ $(terms[0]).closest('li').hide(); if (terms.index(terms.filter(':checked')) == 0){ $(terms[1]).prop('checked', true); } } else { $($('[name="term"]')[0]).closest('li').show(); } } // show_month(); // $('[name="payform"]').change(function(){ // show_month() // }); $('.delete_license').click(function(e){ e.preventDefault(); var lic_pk = $(this).data('id'); $('#dialogs').html('Удалить?'); $('#dialogs').dialog({ buttons: { "Да": function(){ $.post('/my/delete_license/' + lic_pk + '/', function(data){ $('.license_' + data['id']).remove() }); $(this).dialog("close"); }, "Нет": function(){ $(this).dialog("close"); } } }) }) });