Hi, thank you for helping me begin down this path.

Before I use the $.ajax function, do I need to install a codebase for
it?

I notice it is similar to Klaus Hartl cookie plugin, where I install
his codebase, then use it later like var country =
$.cookie('language');

When I start to use this code it seems almost like the rest of the
working jQuery portions of the web page stop working.
        //$.ajax({
                //url: "language_sheet_en.xml",
                //dataType: "xml";
                //success: function(xmlDocument){
                //      $(xmlDocument).find(...).dosomeThing(...);
                //}
        //});

Do I need to install an ajax library or is it allready available in my
jQuery build:  * jQuery 1.1.3.1

Thank you.


On Sep 20, 2:18 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:
> Danjojo schrieb:> Can anyone provide me a link of how to open an xml file 
> using JQuery?
>
> Try this:
>
> $.ajax({
>     url: "file.xml",
>     dataType: "xml",
>     success: function(xmlDocument) {
>       $(xmlDocument).find(...).dosomeThing(...);
>    }
>
> });
>
> http://docs.jquery.com/Ajax/jQuery.ajax#options
>
> -- Jörn

Reply via email to