I keep getting this error in IE6 and 7 version s.
The script is :
window.onload = checkBrowserVersion("Explorer","7");
That function is defined previously and I get this as not implemented
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.
You are executing the function not assigning it as a handler to the onload event of window. Remove the parentheses or wrap the function call within another function.