Simple quick question ....
I have the following html link:
<a href="http://www.site.com/" onmouseover="" />
I have a javascript function in which I want to dynamically inject some onmouseover information into this link. So, let's say, then it becomes like this, for example, if this javascript function is called:
<a href="http://www.site.com/" onmouseover="alert('howdy')" />
any ideas how to do this?
David source share