I have identical mouseover for all of my links (it takes the title attribute of the anchor tag and sets a form field with its value). I achieve this by adding the following code to each link:
onmouseover="myHandler(this)"
the problem is that I have many links. Is there a way to compress the code by setting some global property that makes all mouseovers invoke myHandler with this parameter?
Thanks in advance. The sample of the script acutally can be found on my home page (below, in the signature) ---
---
onmouseover="myHandler(this)"
the problem is that I have many links. Is there a way to compress the code by setting some global property that makes all mouseovers invoke myHandler with this parameter?
Thanks in advance. The sample of the script acutally can be found on my home page (below, in the signature) ---
---