Unfortunately, this problem causes our web application to be totally unusable under IE 7. Since I don't see anything on the prototype.js web site about getting this fixed soon, could you suggest a way to just disable this so that we can continue to use prototype.js until there's a fix out? Honestly, we currently use very little from prototype.js, but I'm hoping to use more and more of it. But, at the moment, users who use IE 7 are totally out of luck.
On Feb 4, 2:27 am, "T.J. Crowder" <[email protected]> wrote: > Hi John, > > I was hoping someone with a link would chime in here fairly quickly, > but in the absense of that... > > This is a known problem. OnIE, to implement the dom:loaded event, > Prototype uses a deferred script tag: > > * * * * > document.write("<script id=__onDOMContentLoaded defer src=//:><\/ > script>"); > $("__onDOMContentLoaded").onreadystatechange = function() { > if (this.readyState == "complete") { > this.onreadystatechange = null; > fireContentLoadedEvent(); > } > }; > * * * * > > I believe there's an effort under way to change how dom:loaded is > fired onIEso it doesn't do that, as this isn't the only problem it > causes. > > HTH, > -- > T.J. Crowder > tj / crowder software / com > Independent Software Engineer, consulting services available > > On Feb 3, 4:43 pm, "[email protected]" <[email protected]> > wrote: > > > When loading a page that includes the prototype.js library (I've tried > > both 1.6.0.2 and 1.6.0.3),IE7pops up a dialog box that says > > "Content from the Web site below is being blocked by Internet Explorer > > Enhanced Security Configuration" and lists the URL "http://". That's > > right - no IP Name, 'localhost' or anything. Any attempt to add this > > toIE'sallowed URLs fails since it's not a valid URL. A web page as > > simple as the one below exhibits this sympton. If I remove the link to > > prototype.js, the behavior goes away. > > > <html> > > <head> > > <title>testing</title> > > <script language="javascript" type="text/javascript" > > src="/javascript/ > > prototype.js"></script> > > </head> > > > <body> > > <p>testing</p> > > > </body></html> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/prototype-scriptaculous?hl=en -~----------~----~----~----~------~----~------~--~---
