Guest User

Untitled

a guest
Jul 16th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. jQuery(function(){
  2. jQuery('a.dialog')
  3.  
  4. .click(function(e){
  5. e.preventDefault();
  6.  
  7. jQuery('#dialog')
  8. .dialog({
  9. autoOpen: false,
  10. bgiframe: true,
  11. height: 315,
  12. width: 355,
  13. modal: true
  14. })
  15. .load(jQuery(this).attr("href"))
  16. .dialog('open');
  17. });
  18. return;
  19. });
Add Comment
Please, Sign In to add comment