what is a simple way to place the same text at the bottom of a internet browser when someone hovers over any link on the page?
quick html ?
Collapse
X
-
onMouseOver="window.status='your text here'; return true;" onMouseOut='window.status=''; return true;" -
... not html
you're thinking functions ... not a javascript expert but it may look something like this ... i don't have one.
then in your links ...Code:<head> <script language="JavaScript" type="text/JavaScript"> someFunction('some shit'){... your function ...}; anotherFunction('more shit'){... your function ...}; </script> </head>
Code:<a href="funtime" onMouseOver="someFunction('xxx');" onMouseOut="anotherFunction('poop');">javascript</a>best host: Webair | best sponsor: Kink | best coder: 688218966 | Go Fuck Yourself
Comment

Comment