[jQuery] Re: .load() not functioning correctly on IE

2010-01-14 Thread Patrick
gib,

do you happen to have a style in the html you are loading? e.g.
style type=text/css. /style

Patrick

On Jan 14, 4:03 am, gib gib...@googlemail.com wrote:
 $(#datatable).load(includes/Remotes.asp,{funcType: getData},
 function (responseText, textStatus, XMLHttpRequest) {
         alert(responseText); // dom element
         alert(textStatus);

 });

 This code works fine in firefox, and the alerted responseText is
 correct, but it is not displayed in the targeted div, any idea whats
 could be going on?

 thanks in advance

 gib


[jQuery] Re: .load() not functioning correctly on IE

2010-01-14 Thread Patrick
gib,

i've spent most of the day working on my problem, which I believe is
similar to yours. What i've found with IE versus other browsers, is
that if one quote is wrong... added or missing... IE won't load the
results. This may be a place for you to look next.

On Jan 14, 4:03 am, gib gib...@googlemail.com wrote:
 $(#datatable).load(includes/Remotes.asp,{funcType: getData},
 function (responseText, textStatus, XMLHttpRequest) {
         alert(responseText); // dom element
         alert(textStatus);

 });

 This code works fine in firefox, and the alerted responseText is
 correct, but it is not displayed in the targeted div, any idea whats
 could be going on?

 thanks in advance

 gib