[jQuery] Re: XMLResponse, Form Plugin and IE

2007-04-05 Thread Jörn Zaefferer
skube schrieb: Actually, Jörn Zaefferer actually pointed out the fix. The solution was to modify the metadata.js as follows: $.fn.setArray = function(arr){ return setArray.apply( this, arguments ).each(function(){ -if ( this.metaDone ) return; // remove this line +

[jQuery] Re: XMLResponse, Form Plugin and IE

2007-04-04 Thread skube
Actually, Jörn Zaefferer actually pointed out the fix. The solution was to modify the metadata.js as follows: $.fn.setArray = function(arr){ return setArray.apply( this, arguments ).each(function(){ -if ( this.metaDone ) return; // remove this line +if (

[jQuery] Re: XMLResponse, Form Plugin and IE

2007-04-04 Thread Mike Alsup
:-) It would appear I've got those args wrong. Try this: $().ajaxError(function(event, xhr, opts, ex) { alert(ex ? ex.message : null); }); The resulting alert: --- Microsoft Internet Explorer --- [object Error]: undefined --

[jQuery] Re: XMLResponse, Form Plugin and IE

2007-04-04 Thread skube
Mike, I added lines above to the following file: http://staging.luminato.base2.ca/inc/test-xml-echo.php The resulting alert: --- Microsoft Internet Explorer --- [object Error]: undefined --- OK --- O

[jQuery] Re: XMLResponse, Form Plugin and IE

2007-04-04 Thread Mike Alsup
skube, Add an ajaxError handler and see what's failing. Something must be throwing an exception that will be caught and passed to registered ajaxError handlers. $().ajaxError(function(ev, opts, xhr, msg, ex) { alert(msg + ': ' + ex); }); Mike On 4/4/07, skube <[EMAIL PROTECTED]> wrote:

[jQuery] Re: XMLResponse, Form Plugin and IE

2007-04-04 Thread skube
Again, to clarify both those links work in Firefox. Only the first one doesn't work in IE. On Apr 4, 12:36 pm, "skube" <[EMAIL PROTECTED]> wrote: > Actually, I've isolated it even more .. it appears there is a problem > when using the metadata plugin for validation. When I remove that > script c

[jQuery] Re: XMLResponse, Form Plugin and IE

2007-04-04 Thread skube
Actually, I've isolated it even more .. it appears there is a problem when using the metadata plugin for validation. When I remove that script call it works fine...here are some examples: http://staging.luminato.base2.ca/inc/test-xml-echo.php (doesn't work) http://staging.luminato.base2.ca/inc/t

[jQuery] Re: XMLResponse, Form Plugin and IE

2007-04-04 Thread skube
Sorry, I should clarify, when I use the exact same code as your demo separately, it works. However, it doesn't work when I use within my pages maybe something else is conflicting.. On Apr 4, 12:02 pm, "skube" <[EMAIL PROTECTED]> wrote: > Nope, when I use the xml-echo.php page and the same JS. It

[jQuery] Re: XMLResponse, Form Plugin and IE

2007-04-04 Thread skube
Nope, when I use the xml-echo.php page and the same JS. It works in FF, but gives undefined responseXML when traced. On Apr 4, 8:01 am, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > I haven't had that problem. Does the demo page work for you? > > http://www.malsup.com/jquery/form/#code-samples > > >

[jQuery] Re: XMLResponse, Form Plugin and IE

2007-04-04 Thread Mike Alsup
I haven't had that problem. Does the demo page work for you? http://www.malsup.com/jquery/form/#code-samples I'm hoping someone may be able to shed some light...I'm having a problem with what appears to be IE hanging when processing an XMLresponse. Below is a sample of what is going on... $