Hi friends
document.getElementById('<%=txtSalesRep.ClientID%>').value not working in popup
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Amit ChoudharyPosted Dec 27, 2012, 10:55 AM
Sivaraman DhamodaranPosted Dec 27, 2012, 9:05 AM
<input id='BtnTest' style='z-index: 100; left: 8px; width: 102px; position: absolute;top:60px' type='button' value='button'/>
The button element can be accessed using that id BtnTest.
document.getElementById("BtnTest") will give you the instance of the button. Make sure the element you are accessing is given an id.
Ajitender VijayPosted Dec 27, 2012, 6:48 AM
Amit ChoudharyPosted Dec 27, 2012, 6:34 AM