javascript - Bootstrap on IE9 -


we have machines still running ie 9 , cannot install newer version of ie because of compatibility issues old softwares.

i have built asp.net web app using bootstrap css.

to make compatible ie9 browser, have put

 <meta http-equiv="x-ua-compatible" content="ie=emulateie9" /> 

however, causing of javascript functions not function properly. unfortunately, console in developer tools empty , not able figure out real problem.

the web app works absolutely fine on chrome , firefox.

please let me know if has faced similar problem , resolution.

thank you

you'll want include shiv's html5 , respond.js in html. download following , save locally. html5shiv.js respond.js in html you'll want add following after css imports. "update src path save files to"

<!--[if lt ie 9]>  <script src="/js/html5shiv.js" type="text/javascript"></script>  <script src="/js/respond.min.js" type="text/javascript"></script> <![endif]--> 

Comments

Popular posts from this blog

java - pagination of xlsx file to XSSFworkbook using apache POI -

Unlimited choices in BASH case statement -

apache - How do I stop my index.php being run twice for every user -