Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Rollover event changes mouse pointer 1

Status
Not open for further replies.

SlowFlight

Programmer
Jan 2, 2003
33
US
I have a rollover event on a thumbnail jpg. When rolled over, the feature picture changes to a larger view of the thumbnail. But the mouse pointer also changes while it is over the thumbnail and I don't want that to happen. How can I change my code to keep from changing the mouse pointer? Is there maybe a style I need to apply?

Here is a sample of my code:

Code:
<a href="#" onmouseover="if (window.document.images)
{window.document.feature.src='images/floatHunting.jpg';}">
<img src="images/tn-floatHunting.jpg" name="thumbnail" alt="thumbnail picture" width="100" height="100" /></a>

Skip

SV "Slow Flight"
1977 Catalina 22 Swing Keel
 
Never mind! I think I found it. I shouldn't have used the <a> tag. I'm not linking to anything, so I should be able to put it in a <p> tag unless you have a better idea.

Skip

SV "Slow Flight"
1977 Catalina 22 Swing Keel
 
Very good.
Now I have a pointer cursor set up for my link rollover events and a default arrow for my non-link img rollover events. Thank you Vragabond

Skip

SV "Slow Flight"
1977 Catalina 22 Swing Keel
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top