I found the following code in one of the old messages in StackOverflow:
$("#<%=GridView1.ClientID%> tr").click(function(){
alert("Row clicked");
});
The code above is supposed to call an alert when user clicks in a row of a GridView. What I don't understand, is how to define (in my GridView) what is referred in the above code as "ClientID". What is "ClientID"?