|
Find getElementById of textbox
How can i getElementById of textbox (txtName), which is inside nested repeater.

Abhishek JainPosted Aug 31, 2013, 8:30 AM
If you want to get all the textboxes which are getting rendered inside the repeater, you can use the following code:
var repeaterTextBoxes = document.getElementById('<%= dlProducts.ClientID %>').getElementsByTagName('input');
Hope it helps..
Regards
AJ