Skip to content

Instantly share code, notes, and snippets.

@nikku
Created September 5, 2011 20:57
Show Gist options
  • Select an option

  • Save nikku/1195900 to your computer and use it in GitHub Desktop.

Select an option

Save nikku/1195900 to your computer and use it in GitHub Desktop.
<div id="alert">
<p>This is an alert! Just want to inform you about that.</p>
</div>
<script type="text/javascript">
$(function() {
$("#alert").dialog2({
title: "Alert",
autoOpen: false,
buttons: {
Close: {
primary: true,
click: function() {
$(this).dialog2("close");
}
}
},
removeOnClose: false
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment