Tagged Questions
3
votes
7answers
2k views
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 ...
2
votes
2answers
108 views
control id rendered correctly but still getting javascript error
Error :
Microsoft JScript runtime error: 'ctl00_ContentPlaceHolder1_txtAdmDate' is undefined
Code :
<input ID="txtAdmDate" runat="server" readonly="readonly" type="text"
...
0
votes
3answers
1k views
jQuery.validate.js and asp.net master pages
I have jQuery in various files, and recently I have needed to change items in the master page. This has caused various jaavscript includes to stop working. Stackoverflow are suggesting great ideas to ...