Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
Every time you create a jQuery UI dialog, you find yourself specifying the same few options, among others:
$('#msg').dialog({
height: 300,
width: 400,
draggable: false,
modal: true,
buttons: {
'OK': function(event, ui) {
$(this).dialog('close');
}
}
...
});