Does anyone have a script for this?
Can it be done?
| SitePoint Sponsor |
Does anyone have a script for this?
Can it be done?


I'd love to help you, but please explain what exactly you want to do. Your title is vague at best.
Basically, I have an image I want to make a rollover, but when you click on it, I want it to open a new window.
The rollover is working fine, I just cant figure out how to have both a rollover and a popup together.


Well, popups aren't too hard to do.
Check out this article:
http://www.quirksmode.org/js/popup.html
If you're image isn't wrapped in an <a> tag, then you can also do the popup with onclick.
Code:<img src="..." onclick="javascript:popup();" ...>
Bookmarks