Click here to Skip to main content
15,891,864 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
as my application requirement is to run in all ie versions from ie6 and above with out any compatability issues
Posted

1 solution

There is no magic word, that can remove differences between different versions of IE (and between It and other browsers, or different versions of other browsers). The differences are in:
1. How browser interprets HTML
2. How browser supports CSS
3. DOM differences
The only way to make your application behave in all IE browsers is to test and adjust! And even then you will never get the exact same look only the exact same functionality...
Some tips:
1. Use JavaScript libraries that support different browsers (like jQuery)
2. Use conditional CSS
3. For HTML use polyfill libraries
About IE6 - most of the word stopped supporting this browser, so probably will get into a big problem - try to explain to your superior the difficulties when supporting a product already dead!
 
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