Basic Show/Hide, but only 1 item at a time
Hey guys.
I have a table of data, and I would like these options to show up when that <td> is hovered over, but as you can see this hides/shows every <td>.
-
$('div.msgEdit').hover(function() {
$('td .msgEdit a').show();
},
function() {
$('td .msgEdit a').hide();}
);
Is there a way to limit it to the selected <td> at a time?
I'm not sure how to go about it, somehow I need a
(this td.msgEdit a) in there but I dont know how to go about it