i am looking for the best selector (jquery) in content pages !
i found the below selectors , but what is better and i should use that in .net 4?
alert($('#hfFirstTimePageLoad').val()); -> NOT Ok
$('#ContentPlaceHolder1_hfFirstTimePageLoad').val("This Is A Test"); -> Ok
alert($('#ContentPlaceHolder1_hfFirstTimePageLoad').val()); -> Ok
alert($('#<%= hfFirstTimePageLoad.ClientID%>').val()); -> Ok
thanks for leading me