If I wanted to place a short message in the status bar using this code:
<a href="index.html" onmouseover="window.status='Here is the info about this link'; return true">HOME</a>
and I also wanted to add a sound that would trigger on mouseover, using this code (the sound mouseover is referencing a full js in the <head>):
<a href="index.html" onmouseover="playsound('sound/sound1.wav')">HOME</a>
Question: How can I do both onmouseovers at the same time??
<a href="index.html" onmouseover="window.status='Here is the info about this link'; return true">HOME</a>
and I also wanted to add a sound that would trigger on mouseover, using this code (the sound mouseover is referencing a full js in the <head>):
<a href="index.html" onmouseover="playsound('sound/sound1.wav')">HOME</a>
Question: How can I do both onmouseovers at the same time??