次のhtmlコードがあります。
<table id="MatrixTable">
<tr>
<td id="321"> 0 </td>
</tr>
</table
A. 次のように jQuery でマウスオーバーしたときに、「0」テキストをハイパーリンクに置き換えるにはどうすればよいですか。
<table id="MatrixTable">
<tr>
<td id="321">
<a class="modal-dialog-link" href="Edit?matrixID=321" updatefunction="UpdateMatrix">
0
</a>
</td>
</tr>
</table>
$("table#MatrixTable td").mouseover(function () {
// doing something here...
});
B. 次のように jQuery で mouseleave を行うと、元の「0」に戻るにはどうすればよいですか。
$("table#MatrixTable td").mouseleave(function () {
// doing something here...
});
ありがとう。