Skip to content

Instantly share code, notes, and snippets.

@pwdonald
Created February 5, 2014 20:02
Show Gist options
  • Save pwdonald/8831884 to your computer and use it in GitHub Desktop.
Save pwdonald/8831884 to your computer and use it in GitHub Desktop.
jQuery UI Popup Message Helper
// PopUpMessage dialog helper
// Requires a div for messagebox and a inner div for inner-message
function PopupMessage(text,title) {
$('.inner-message').text(text);
$('.message-box').dialog(
{
title: title,
modal: true,
buttons: [{ text: "Ok", click: function () { $(this).dialog("close"); } }]
});
$('.message-box').css('visibility', 'visible');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment