Confirm на jquery без плагинов «одной строкой»
Вот одно из решений:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
$('<div></div>').appendTo('body') .html('<div><h6>Вы убеждены?</h6></div>') .dialog({ modal: true, title: 'Удалить всё?', zIndex: 10000, autoOpen: true, width: 'auto', resizable: false, buttons: { Yes: function () { $(obj).removeAttr('onclick'); $(this).dialog("close"); }, No: function () { $(this).dialog("close"); } }, close: function (event, ui) { $(this).remove(); } }); |