Skip to content

Instantly share code, notes, and snippets.

@jroes
Created July 29, 2009 21:43
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 jroes/158417 to your computer and use it in GitHub Desktop.
Save jroes/158417 to your computer and use it in GitHub Desktop.
jQuery(document).ready(function($) {
$('#dialog').dialog({
bgiframe: true,
autoOpen: false,
height: 400,
width: 720,
modal: false,
zIndex: 50,
buttons: {
Done: function() {
$(this).dialog('close');
}
}
});
$('#weather_button').click(function() {
$('#dialog').dialog('open');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment