How to use JQuery, select element by ID and ASP.NET without putting ctl00_ everywhere in the code
I have about 600+ references of code similar to the following... $("#ctl00_ContentMainPane_eliteUser").html And changed the master template, only to find all the code had broken, due to the control hierarchy changing. All javascript is included in separate files, so I cannot use code such as this... $("#<%= eliteUser.clientID%>").ht...