[jQuery] Re: IE8 & BlockUI incompatible

2009-05-08 Thread Anand Kulkarni
Hi Bart, Try the following. In your page just have an empty body tag and a script tag in the head. In the script tag, invoke blockUI and then use ajax to load the entire content into the body (or any container of your choice, really). See the following example: index.html (simplified) ==

[jQuery] Re: IE8 & BlockUI incompatible

2009-05-08 Thread Ronen42
Hi Anand, the thing is, I have to block the screen while loading the page to prevent any user interaction untill the page ist completely loaded. This is working in all browsers but not in IE8. My solution right now is to set IE8 to IE7 render mode with the meta tag: Greets, Bart

[jQuery] Re: IE8 & BlockUI incompatible

2009-05-05 Thread Anand Kulkarni
Hi Ronen42, Its recommended that you invoke the plugin in the $(document).ready (function(){ }) section. Although the plugin might detect the browser version at the very beginning, any internal procedures (such as creating the overlay etc.) may not work until the entire DOM is ready to be manipu

[jQuery] Re: IE8 & BlockUI incompatible

2009-05-05 Thread Ronen42
Hi All, > on line 151 simply change: > > var ie6 = $.browser.msie && /MSIE 6.0/.test(navigator.userAgent); > > to > > var ie6 = $.browser.msie && /MSIE 6.0/.test(navigator.userAgent) && !(/ > MSIE 8.0/.test(navigator.userAgent)); > > And then everything works fine and dandy! My test environment w

[jQuery] Re: IE8 & BlockUI incompatible

2009-04-15 Thread Anand
Hi All, I have it! The solution to the problem where the blockUI plugin doesn't working in IE8 is as follows: on line 151 simply change: var ie6 = $.browser.msie && /MSIE 6.0/.test(navigator.userAgent); to var ie6 = $.browser.msie && /MSIE 6.0/.test(navigator.userAgent) && !(/ MSIE 8.0/.test(

[jQuery] Re: IE8 & BlockUI incompatible

2009-03-23 Thread Mike Alsup
> Mike, > > your page fails for me with "not implemented"> Nicht implementiert > jquery.blockUI.js?v2.16, line 227 character 17 > > on Win XP Pro w/ SP3 and IE8 > > Regards, Frank Thanks, Frank. What browser mode and compatibility mode did it fail in?

[jQuery] Re: IE8 & BlockUI incompatible

2009-03-23 Thread dfd
Mike, your page fails for me with "not implemented" > Nicht implementiert jquery.blockUI.js?v2.16, line 227 character 17 on Win XP Pro w/ SP3 and IE8 Regards, Frank On 20 Mrz., 22:10, Mike Alsup wrote: > > > This eliminates the exception, but the placement of the floating content > > > is > >

[jQuery] Re: IE8 & BlockUI incompatible

2009-03-20 Thread Mike Alsup
> Click Page -> Compatibility View Settings > Uncheck the option "include updated websites from Microsoft" > Try this page, where I first noticed > it:http://corp.americanexpress.com/gcs/travel/service/personalservice.aspx > Click on the globe to trigger the popup. It bombs. Now go into IE7 > com

[jQuery] Re: IE8 & BlockUI incompatible

2009-03-20 Thread Josh Kewley
2:11 PM To: jQuery (English) Subject: [jQuery] Re: IE8 & BlockUI incompatible > > This eliminates the exception, but the placement of the floating content is > > different, and it doesn't appear to adjust on window resize. Thanks for the > > update, and let me know if

[jQuery] Re: IE8 & BlockUI incompatible

2009-03-20 Thread Johannes Schill
On 20 Mar, 21:04, Mike Alsup wrote: > > There was a thread about this last month that identified a problem with the > > use of setExpression in BlockUI. IE8 throws a not implemented exception in > > this case. The author noted that the BlockUI demo page works fine in IE8, > > which it does. To b

[jQuery] Re: IE8 & BlockUI incompatible

2009-03-20 Thread Mike Alsup
> > This eliminates the exception, but the placement of the floating content is > > different, and it doesn't appear to adjust on window resize. Thanks for the > > update, and let me know if you need assistance in testing/debugging the new > > version. > > How about a test page.  One that is as si

[jQuery] Re: IE8 & BlockUI incompatible

2009-03-20 Thread Mike Alsup
> This eliminates the exception, but the placement of the floating content is > different, and it doesn't appear to adjust on window resize. Thanks for the > update, and let me know if you need assistance in testing/debugging the new > version. How about a test page. One that is as simple as pos

[jQuery] Re: IE8 & BlockUI incompatible

2009-03-20 Thread Josh Kewley
query-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Mike Alsup Sent: Friday, March 20, 2009 1:04 PM To: jQuery (English) Subject: [jQuery] Re: IE8 & BlockUI incompatible > There was a thread about this last month that identified a problem with the > use of setExpres

[jQuery] Re: IE8 & BlockUI incompatible

2009-03-20 Thread Mike Alsup
> There was a thread about this last month that identified a problem with the > use of setExpression in BlockUI. IE8 throws a not implemented exception in > this case. The author noted that the BlockUI demo page works fine in IE8, > which it does. To be honest, I'm not sure why. > > However, the p