Guest User

Untitled

a guest
Jan 16th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. <a id = "lnkGId" href = "" name = "lnkGId" runat = "server" ></a>
  2.  
  3. //check to ensure the link has an href
  4.  
  5. $(document).ready(function () {
  6. if($("a[id *= 'lnkGId']").length > 0 && $("a[id *= 'lnkGId']").attr("href") !="" ){
  7. console.log($("a[id *= 'lnkGId']").attr("href"));
  8. }
  9. });
  10.  
  11. $("a[id *= 'lnkGId']").fancybox().trigger("click");
  12.  
  13. var url = $("a[id *= 'lnkGId']").attr("href");
  14. $.fancybox({
  15. href: url,
  16. modal: true,
  17. 'fitToView' : false,
  18. 'width' : '600px',
  19. 'height' : '560px',
  20. 'autoSize' : false,
  21. 'closeClick' : true
  22. });
  23.  
  24. $("a[id *= 'lnkGId']").fancybox({
  25. 'fitToView' : false,
  26. 'width' : '600px',
  27. 'height' : '560px',
  28. 'autoSize' : false,
  29. 'closeClick' : true
  30.  
  31. });
  32. $("a[id *= 'lnkGId']").trigger("click")
  33.  
  34. $.fancybox('<iframe width="600" height="560" src="' + url + '"></iframe>',
  35. {
  36. 'width': 600,
  37. 'height': 560
  38. });
Add Comment
Please, Sign In to add comment