With reference to: 'http://www.aspsnippets.com/Articles/How-to-change-GridView-Row-Color-on-Mouseover-in-ASPNet.aspx'
I succeeded in implementing row color on mouseover. CSS and jQuery script are in my master page. I would like all gridviews of the website to behave in the same way regarding row background color on mouseover. I assume that I just need to modify the line
$("[id*=GridView1] td").hover(function () {
so that all gridviews are affected, not just a particular one. What is the appropriate syntax, please?