I have a js method in a common user control that is being used across the project. This UserControl is used in multiple places on my page.
The js method is written like :
function <%= this.ClientID%>DoSomething()
{
//do something
}
Is there a way I can call this method from the parent page using jquery?
Any thoughts will be helpful.