Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. // This calls the colorbox:
  2.  
  3. <script>
  4. var openColorbox = function() {
  5. $.colorbox({ href: "pages/custom/download/download.php", width: 304, height: 235, scrolling: false, opacity: 0.5, });
  6. };
  7.  
  8. setTimeout(openColorbox, 3000);
  9. </script>
  10.  
  11. // This is the download.php file
  12. <?php
  13. $_SESSION["popup"] = true;
  14. ?>
  15. <div id="wrapper" style="width: 299px; height: 200px;">
  16. <img src="pages/custom/download/button.jpg" usemap="#Map2" >
  17. <map name="Map2" id="Map2">
  18. <area shape="rect" coords="255,5,296,20" href="index.php" />
  19. <area shape="rect" coords="167,142,257,176" href="download.php" />
  20. <area shape="rect" coords="43,141,134,178" href="index.php" />
  21. </map>
  22. </img>
  23. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement