Link to home
Start Free TrialLog in
Avatar of garethtnash
garethtnashFlag for United Kingdom of Great Britain and Northern Ireland

asked on

JQuery Toggle Delete Icon

Hello Experts,

I've got some HTML (with inline styles - only in place for the design process)...

<tr style="background-color:#efefef;">
<td style="line-height:36px; font-size:12px; text-align:left; font-family:Arial, Helvetica, sans-serif; padding: 0px 8px; border:1px solid; border-color:#dedede; font-weight: bold;"><div style="position:relative;">Date: <%=RSNotes("Date")%>
  <a href="#"><img src="png/trashNew.png" width="13" height="15" alt="Delete" style="right:0px; position: absolute; top: 10px;" /></a></div></td>
</tr>

Open in new window


What I would like to do, is display:hidden this -

<a href="#"><img src="png/trashNew.png" width="13" height="15" alt="Delete" style="right:0px; position: absolute; top: 10px;" /></a>

Open in new window


but show it whenever a user hovers over the table row.....

the table row is part of a two row table. the table is in a repeat region..

Any suggestions?

Thanks
SOLUTION
Avatar of Ivo Stoykov
Ivo Stoykov
Flag of Bulgaria image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Avatar of Chris Stanyon
Chris Stanyon
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of garethtnash

ASKER

Thank you