Can you combine these two together?

liunx

Guest
Is there anyway to combine these two together so that they work at the same time?<br />
<br />
<br />
<br />
onMouseOver="this.style.backgroundColor='yellow'" onMouseOut="this.style.backgroundColor='white'"><br />
<br />
<br />
and<br />
<br />
<br />
<br />
onMouseOver="window.status='blah blah'; return true" onMouseOut="window.status=''; return true"<br />
<br />
<br />
Can you make those into one so they both work?<!--content-->onMouseOver="this.style.backgroundColor='yellow' ; window.status='blah blah'; return true" onMouseOut="this.style.backgroundColor='white' ; window.status=''; return true"<br />
<br />
<br />
I'm not sure if this works with every browser, but I know it'll work with IE6 and Opera7. Maybe someone more familiar with JavaScript has a better way.<!--content-->
 
Back
Top