Skip to content

Instantly share code, notes, and snippets.

@hanssens
Created November 29, 2011 09:50
Show Gist options
  • Save hanssens/1404217 to your computer and use it in GitHub Desktop.
Save hanssens/1404217 to your computer and use it in GitHub Desktop.
jQuery - Simple Modal Dialog
$(function () {
$("#dialog-modal").dialog({
closeOnEscape: true,
//closeText: 'Sluiten',
draggable: false,
resizable: false,
width: 550,
height: 500,
modal: true,
overlay: {
opacity: 0.8,
background: 'black'
},
dialogClass: 'myDialogCss',
title: 'Yeah Whatever!'
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment