Skip to content

Instantly share code, notes, and snippets.

@azborgonovo
Last active March 3, 2016 17:07
Show Gist options
  • Save azborgonovo/d80ec2102fa79874b377 to your computer and use it in GitHub Desktop.
Save azborgonovo/d80ec2102fa79874b377 to your computer and use it in GitHub Desktop.
Javascript code too show a JQuery UI overlay widget
var $overlay = $('<div class="ui-widget-overlay"></div>').hide().appendTo('body');
// $overlay.width($(document).width());
// $overlay.height($(document).height());
$overlay.fadeIn();
$(window).resize(function () {
$overlay.width($(document).width());
$overlay.height($(document).height());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment