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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

onMouseOut

Status
Not open for further replies.

deluxmilkman

Programmer
Sep 26, 2007
17
JP

onMouseOver works, but onMouseOut doesn't.
What am I missing?


HTML:
<a href="html.html" onMouseOver="parent.status='LOAD HTML VERSION';return true" onMouseOut="parent.status=' ';retuen true" target="bottom">HTML_VERSION</a>

Thanks
 
If you cut and paste the code provided it's a spelling error.
Code:
<a href="html.html" onMouseOver="parent.status='LOAD HTML VERSION';return true" onMouseOut="parent.status=' ';[COLOR=red]retuen[/color] true" target="bottom">HTML_VERSION</a>
I tested it with ;
Code:
<a href="html.html" onMouseOver="parent.status='LOAD HTML VERSION';return true" onMouseOut="parent.status='poo ';return true" target="bottom">HTML_VERSION</a>

Glen
 
this means, to me, that you attempted NOTHING to try to fix the issue yourself. i wonder why people use this site as a crutch so much, without putting any effort in themselves.



*cLFlaVA
----------------------------
[tt]"quote goes here"[/tt]
[URL unfurl="true"]http://www.coryarthus.com/[/url]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top