Guest User

Untitled

a guest
May 24th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. (function($){
  2. $.fn.extend({
  3. modalPanel: function() {
  4. $(document).keydown(function(e) {
  5. switch(e.keyCode) {
  6. case 27: $("#modal-overlay").remove(); break;
  7. }
  8. });
  9.  
  10. return this.each(function() {
  11. $(this).click(function(e) {
  12. e.preventDefault();
  13. var overlay = $("<div/>").click(function(e) {
  14. e.preventDefault();
  15. alert("overlay click");
  16. });
  17.  
  18. $("body").append(overlay);
  19. overlay.fadeIn(200);
  20. });
  21. });
  22. }
  23. });
  24. })(jQuery);
Add Comment
Please, Sign In to add comment