This is my website -> www.superim.ir Its template base is bootstrap and in nav menu I used below code for some effects!
$(\'.productbar .dropdown\').on(\'sho
I faced the same problem. I got help from this link. Execute JavaScript when an UpdatePanel is updated
protected void Page_Load(object sender, EventArgs e)
{
ScriptManager.RegisterStartupScript(
upPanel,
this.GetType(),
"MyAction",
"doMyAction();",
true);
}