Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTML5 Shiv Google CDN Link Not Working

This Shiv Google CDN Link Not Working. What Should I Do?

<!--[if lt IE 9]>
  <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
like image 975
Alex Avatar asked May 14 '16 09:05

Alex


1 Answers

This was happening because the CDN link has been updated for html5shiv.

Try this from CDNJS instead:

<!--[if lt IE 9]>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->

Hoping this will help you :)

like image 150
Vikash Pandey Avatar answered Sep 29 '22 04:09

Vikash Pandey