I’m using
Page.ClientScript.RegisterStartupScript(this.GetType(), "onload",
"LoadGraphInitially(true)", true);
to attach a script on page load but it does’nt get fired in google chrome, though it works fine in IE and firefox.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
as @SJ GJ suggested
"LoadGraphInitially(true)"..add a;like this .."LoadGraphInitially(true);"adding a
;solved my problem.