Skip to content

Instantly share code, notes, and snippets.

@terra819
Created March 26, 2013 13:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save terra819/5245246 to your computer and use it in GitHub Desktop.
Save terra819/5245246 to your computer and use it in GitHub Desktop.
Open jquery ui modal popup
$("#divID").dialog({
title: 'Modal Window Title',
height: 250,
width: 650,
modal: true,
buttons: {
'OK': function () {
$(this).dialog('close');
} //Ok
}//buttons
}); //dialog
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment