Click here to Skip to main content
15,886,091 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi
The application which we developed was testing with different browsers but the java scripts code is working fine in Mozilla,Chrome and Opera but its not working in IE9.I need some suggestion on this...Thanks in advance.
Posted
Comments
You have to debug and see where exactly the issue happens.
Nivedita_Parihar 5-Jun-14 2:41am    
Does scripting is allowed or java is enabled in your IE ?
Sergey Alexandrovich Kryukov 5-Jun-14 2:53am    
Not clear what help would you expect. However, just a note: if your work is rendered well on all those browser but IE, this is a sing of that you are on a right route. However, in practice, you will need to support IE, at least some latest versions.
—SA
[no name] 5-Jun-14 4:28am    
You need to build your applications compatible with the most browsers, if not all. Try to find where you're going wrong.

1 solution

If you are using jQuery let you know that many of the jQuery methods will not be supported in IE 9. To track what is failing just follow the below steps :-

i) Open the application in IE 9.
ii) Press 'F12' & it will open the developer's tool.
iii) Click on console tab, and now do the operation which is failing.
You will get the exact error for which the operation is failing for IE 9 only.

Then you can take steps to fix it.

Or else you can debug the particular method in JavaScript code to get the reason behind the error.

Then to fix it you can replace the particular jQuery method by pure JavaScript code so that it will work for any version of IE also.


Hope this will be of help for you.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900