I am looking to utilize the __doPostBack JavaScript function.
__doPostBack(obj.UniqueID,'');
The challenge I'm facing is that I only have the ClientID of my object -
ctl00_cpholder_myObjId
document.getElementById("ctl00_cpholder_myObjId").id //This will obtain ctl00_cpholder_myObjId, however UniqueID should be ctl00$cpholder$myObjId
Is there a way for me to retrieve the UniqueID for the PostBack?
Can I simply substitute '_' with '$'?
Thank you.