Skip to content

Instantly share code, notes, and snippets.

@dexfs
Created May 21, 2013 01:56
Show Gist options
  • Save dexfs/5617041 to your computer and use it in GitHub Desktop.
Save dexfs/5617041 to your computer and use it in GitHub Desktop.
$(function(){
$('#dialog').dialog({
autoOpen: false,
resizable: false,
height:140,
modal: true,
buttons: {
"Sim": function(){
document.corrigirvalorparcela.submit();
},
"Não": function(){
$(this).dialog('close');
}
},
Close: function(){
$(this).dialog('close');
}
});
$("form#corrigirvalorparcela").submit(function(e){
e.preventDefault();
$("#dialog").dialog('open');
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment