Thursday, May 26, 2016

IE 11, jQuery, KB 3154070 iFrames Issue

If you happen to have customers rolling out IE 11, and having issues loading the IFrames, especially with jQuery after installing the security patch, I share your pain...


The solution for now is to reload your iframe.


Here is a quick workaround for you :


$("iframe").each(function(){
  $(this).attr("src", $(this).attr("src"))
});

I hope it helps