$(function(){ $('#message').map(function(){ var message = $(this); var dialog = $('
'); dialog.append(''); dialog.attr('title', message.attr('title')); dialog.children('p').append(message.html()); if($.isFunction(dialog.dialog)){ test = dialog.dialog({ bgiframe: true, modal: true, resizable: false, buttons: { Ok: function () {$(this).dialog("close");} } }) } else{ alert(message.text()); } }); $('.confirm').click(function(event){ event.preventDefault(); event.stopPropagation(); var obj = $(this); var dialog = $(''); dialog.append('
'); dialog.attr('title', 'Pytanie'); dialog.children('p').append(obj.attr('question')); if($.isFunction(dialog.dialog)){ dialog.dialog({ bgiframe: true, modal: true, resizable: false, buttons: { Ok: function(){ location.href=obj.attr('href'); }, Anuluj: function(){ $(this).dialog("close"); } } }) } else{ if(confirm(obj.attr('question'))){ location.href=obj.attr('href'); } } }); }); function validation(fields) { //$(".form_error").remove(); for (var i=0; i