In javascript file I has
(highlight when hover over fields)
$(document).ready(function () {
$("#divGridView table tbody tr").mouseover(function () {
$(this).addClass("highlightRow");
}).mouseout(function () { $(this).removeClass('highlightRow'); })
});
I drag and used under content page..
Now i want this javascript for my gridview.how to call?
<div class="????">
<asp:gridview....></gridview>
</div">