Lo he probado con:
Código:
$(document).ready(function() {
$("table tr:has(td)").css({ background: "ffffff" }).hover(
function() { $(this).css({ background: "#C1DAD7" }); },
function() { $(this).css({ background: "#ffffff" }); }
);
});
El problema es que así me colorea cualquier tabla que tengo en la web.
Si le añado el ID del gridview no me funciona:
Código:
$(document).ready(function () {
$("#GridView1 table tr:has(td)").mouseover(function (event) {
$(this).css({ background: "#ffffff" });
});
$("#GridView1 table tr:has(td)").mouseout(function (event) {
$(this).css({ background: "#f6aa4c" });
});
});
Alguna posible solución?
Gracias, un saludo