My company's homepage is created by a perl code (let's call it 'home.pl'). A piece of html code created by home.pl is list below:
So, if you put your mouse on the gif (plus.gif), you would see a string 'Expand this tree' on the lower left cornor of your IE. And it works on IE 6. However, on IE 7, when you put your mouse on the same gif, you would see 'home.pl' instead of 'Expand this tree'.
Can someone please tell me why tOver() stops working with IE 7? I know how to fix it. But I don't understand why it is not working with IE 7. And it is very important for me to figure out why it is not working, for we are having tons of problems with IE 7, because my company's pages are using javascript extensively. And now most of those pages are behaving funky.
Thank you for your help.
Code:
function tOver() {
self.status='Expand this tree';
return true;
}
<a onmouseover="return tOver()"
onmouseout="return tOut()" href="#"
onclick="showMenu(80);return false">
<img name="i80" align="middle" border="0" src="/images/plus.gif" />
</a>
So, if you put your mouse on the gif (plus.gif), you would see a string 'Expand this tree' on the lower left cornor of your IE. And it works on IE 6. However, on IE 7, when you put your mouse on the same gif, you would see 'home.pl' instead of 'Expand this tree'.
Can someone please tell me why tOver() stops working with IE 7? I know how to fix it. But I don't understand why it is not working with IE 7. And it is very important for me to figure out why it is not working, for we are having tons of problems with IE 7, because my company's pages are using javascript extensively. And now most of those pages are behaving funky.
Thank you for your help.