On 17 Apr, 21:43, nmadg <[EMAIL PROTECTED]> wrote:
> What am I doing wrong!!!  Thank you so much for your help.

are you working with a local file?
IE doesn't like it at all!
if this is the case, don't worry, it'll work once the system will be
online.
otherwise, if you need to use local files anyway, you have to make
some adjustments to your code.

dataType: (jQuery.browser.msie) ? 'text' : 'xml',
success: function(xmlData){
    var data;
    if ( typeof xmlData == 'string') {
        data = new ActiveXObject( 'Microsoft.XMLDOM');
        data.async = false;
        data.loadXML( xmlData);
    } else {
        data = xmlData;
    }

hope it helps :)

Reply via email to