I am continuing to read the documentation at
http://docs.jquery.com/Specifying_the_Data_Type_for_AJAX_Requests

On Sep 24, 4:02 pm, Danjojo <[EMAIL PROTECTED]> wrote:
> 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- Hide quoted text -
>
> - Show quoted text -

Reply via email to