Html 5 nav tags is ajax stop in cakephp in IE7

I am using html5 structrure in cake php.
When I use tag the nav

ajax links don't work, but when I replace the tag nav

with the tag the div

ajax links work.

Is there a suitable solution for triggering ajax links using a tag nav

.

+3


source to share


1 answer


IE7 doesn't recognize nav tag (or other html5-only elements) without padding. The most popular solution I know of is html5shiv:

https://github.com/aFarkas/html5shiv



If you want to know more about it, you can do it here:

http://paulirish.com/2011/the-history-of-the-html5-shiv/

+5


source







All Articles