Skip to content

Instantly share code, notes, and snippets.

@apanzerj
Created June 12, 2012 19:07
Show Gist options
  • Save apanzerj/2919475 to your computer and use it in GitHub Desktop.
Save apanzerj/2919475 to your computer and use it in GitHub Desktop.
jQuery Snippet of a Dialog for Former
$('#box_form').dialog({
autoOpen: false,
height: 375,
width: 350,
modal: true,
buttons: [
{
text: "Cancel",
click: function() {
$(this).dialog("close");
}},
{
text: "Submit",
click: function() {
$('#zFormer').submit();
}}
]
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment