Can someone help me, I'm trying to create a link called "Compare all hosting plans" and once you click on that link a new window will popup comparing all packages. Just like Hostgator did if you visit the link below and click on "Compare all hosting plans" you guys will know what I'm talking about. http://www.hostgator.com/shared.shtml
They are using a jQuery plugin called TinyBox This is the code that Hostgator use to make the box appear with the comparison page (compare.shtml). <link href="shared/css/tinybox.css" type="text/css" rel="stylesheet" /> <script type="text/javascript" src="shared/js/tinybox.js"></script> <script type="text/javascript"> function compare() { TINY.box.show('compare.shtml',1,525,600,1,0); return false; } </script> <div class="link"><img src="shared/img/magnifier.png" alt="Compare" /> <a href="#" onclick="compare();return false;"> Compare All Hosting Plans</a></div> Code (markup):