<
script src ="Script/jquery-1.4.min.js" type ="text/javascript"></ script > < script type ="text/javascript">$(document).ready(
function () { //To remove the row on click on click of the row$(
"#check_rows" ).click( function () {if ($('#check_rows').is(':checked')) {
$('#<%=GridView1.UniqueID%> td:nth-child(2):contains(Playing)').css("background-color", "green");
$('#<%=GridView1.UniqueID%> td:nth-child(2):contains(Playing)').css({ "cursor": "hand" });
$('#<%=GridView1.UniqueID%> td:nth-child(2):contains(Playing)').fadeOut(500, function() {
$('#<%=GridView1.UniqueID%> td:nth-child(2):contains(Playing)').hide();
});
}
else {
$('#<%=GridView1.UniqueID%> td:nth-child(2);td:contains(Playing)').css("background-color", "green");
//$("tr:not(:has(td))").css({ "cursor": "hand" });
$(
'#<%=GridView1.UniqueID%> td:nth-child(2);td:contains(Playing)' ).fadeOut(500, function () {$(
'#<%=GridView1.UniqueID%> td:nth-child(2);td:contains(Playing)' ).show();});
}
}); //Change the backgroupd color while removing the GridView row and fade out feel to the user