I need to actions within an htmlpane that would result in changing the page location.
Thanks to html5, iFrames naitively support this with the "sandbox" attribute;
I tried using this jQuery but adding the sandbox flag to an existing iFrame does not work without rebuilding the iFrame. Is there an isomorphic solution to this problem?
$(".urlPane iframe").each(function () { $(this).attr('sandbox', ''); });
Thanks to html5, iFrames naitively support this with the "sandbox" attribute;
I tried using this jQuery but adding the sandbox flag to an existing iFrame does not work without rebuilding the iFrame. Is there an isomorphic solution to this problem?
$(".urlPane iframe").each(function () { $(this).attr('sandbox', ''); });
Comment