Question
Two anchor tags on cffom
Here is part of my cfform
<td colspan="2">
<input type="text" name="supplier_number" id="supplier_number" value="">
<a href="supplier_number_lookup.cfm?urdn_number=#qryGet_Activity.urdn_number#">
<img src="../images/magnifying_glass.gif">
<a href="javascript:void(0);" onmouseover="return overlib('Click here to search for a supplier number.', FGCOLOR, '#DCDEE0');" onmouseout="return nd();">
</a>
There is an input tag. Think a url link that will go to the next page if the magnifying glass icon is clicked. Howerver, there is some java popu that should also display when the mouse is over the magnifying glass, but it does not work. can I have two </a> tags, one when you click on the magnifying glass to go to the link and one when you hover over the magnifying glass to dispalythe popup message ?
I tried to move the </a> around but it seems to only work for one and not both.
Do I have the </a> in the wrong place, or how can I do this ?
<td colspan="2">
<input type="text" name="supplier_number" id="supplier_number" value="">
<a href="supplier_number_lookup.cfm?urdn_number=#qryGet_Activity.urdn_number#">
<img src="../images/magnifying_glass.gif">
<a href="javascript:void(0);" onmouseover="return overlib('Click here to search for a supplier number.', FGCOLOR, '#DCDEE0');" onmouseout="return nd();">
</a>
There is an input tag. Think a url link that will go to the next page if the magnifying glass icon is clicked. Howerver, there is some java popu that should also display when the mouse is over the magnifying glass, but it does not work. can I have two </a> tags, one when you click on the magnifying glass to go to the link and one when you hover over the magnifying glass to dispalythe popup message ?
I tried to move the </a> around but it seems to only work for one and not both.
Do I have the </a> in the wrong place, or how can I do this ?
