I have a bookmarklet that loads a div into a current page and places an iframe inside it. The bookmarklet works like a dream in all browsers except IE9. Even works in earlier versions of IE.
I'm using the following bookmarklet framework:
http://idc.anavallasuiza.com/project/bookmarklets
Some one else has had a similar issue here (not related to bookmarklets):
https://forum.jquery.com/topic/retrieved-html-data-type-with-jquery-ajax-in-ie9-scripts-tags-sources-could-not-be-loaded
So far I'm understanding that my bookmarklet's jQuery is not loading properly in IE9.
The bookmarklet attempts to load its own jQuery so certain effects can run when the bookmarklet is initialising, and for programming ease.
The iFrame page also loads jQuery (without it the content in the iframe does not work properly).
I am using the latest jQuery:
http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js
I would like to know why IE9 causes these SCRIPT errors when no other browser does? Why is jQuery not loading properly in IE9?
Any insight would be much appreciated.