javascript - How to use html5shiv with Iframe sandbox attribute -


i use html5shiv support on ie9 can't work. have installed in head section:

<!--[if ie 9]>  <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> 

i need support html5 iframe sandbox:

<iframe id="iframe" src="http://www.telegraaf.nl" sandbox="allow-scripts allow-forms allow-same-origin"></iframe> 

the website in iframe break out iframe in ie9 means sandbox not working. think problem maybe sandbox attribute of iframe rather "style method/element".

so need advice on this. else can do? there plugin (jquery?javascript?) somewhere support sandbox in ie?

you don't need html5shiv in case polyfill property.


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -