Been having a bit of fun with jQuery lately, built the following: http://dev.diazcooper.com/AFX/product-comparison/chart If you click on either of the "50 point search" links it'll slide out content at the bottom of the page. The two links have different background colors and the slider will retract and re-open when switching between the two, also clicking on the link again will close the slider. Clicking the View Samples links will open modal windows as will the "Platinum bonus features" button. The site is built in Drupal also, and that page is a collection of different Views pulling different pieces of content. Just thought I'd share
Yea, I've thought about that, I could do it with CSS, or make it be slid-out by default and then set it to be hidden as soon as you hit the page if you have JS enabled. I'd have to change how the modal works though to make it switch out the link if JS is enabled so that if it isn't, it opens a new window.
Nah, it's easier than that; just make a regular HTML page with the information on, then change you links to look like Code: <a href="chart.html" onclick="OpenModal('comparechartmodal','text'); return false;"> Now people who middle click the link can open it in a new window and you don't alientate people who choose to disable JS, or people who can't view rich content (such as screen readers for the blind).