$(function() { $('a.confirmation').click(function(event){ if (confirm("Czy na pewno chcesz usunąć dany element?")!=true){ event.preventDefault(); } }) }) jQuery.extend({ confirm: function(title, message, redirect, cancel, ok ) { ok = typeof ok !== 'undefined' ? ok : 'Ok'; cancel = typeof cancel !== 'undefined' ? cancel : 'Cancel'; jQuery("
").dialog({ open: function(event, ui) { jQuery(".ui-dialog-titlebar-close").hide(); }, buttons: [ { text: cancel, click: function() { jQuery(this).dialog("close"); } }, { text: ok, click: function() { jQuery(this).dialog("close"); window.location = redirect; } }, ], close: function(event, ui) { jQuery(this).remove(); }, resizable: false, title: title, autoOpen: true, modal: true }).html(message); } });