Yes, the line before is terminated with a semi-colon :) As I said, the code works fine in all the other browsers I've tested it in. It's just IE that throws an error.
Cheers, Gaz. On Jun 7, 4:26 pm, waseem sabjee <waseemsab...@gmail.com> wrote: > I tested the $.ajax working fine on my end. > > do you may be have a line before $.ajax({ ... that is not terminated with > the ; > > > > On Sun, Jun 7, 2009 at 2:05 PM, Gaz <gpear...@gmail.com> wrote: > > > Hi all, > > > This is my first post to the group, so please be gentle :) > > > For some unknown (to me at least) reason I'm getting a syntax error in > > IE from the following code > > > $.ajax({ > > type: "POST", > > url: app_config.base_url + "/client/ajax/ > > get_book_details_html/" + btoa(title), > > processData: false, > > data: order, > > async: false, > > success: function(html) { > > $('#related_books').append(html); > > $('#add_book_title').val(''); > > hide_loader(); > > } > > }); > > > The error is on the first line $.ajax({ > > > This code works perfectly well in all the other browsers I've tested > > it on (FF Mac, FF Windows, Safari Mac). > > > Anybody got any ideas as to what the problem is? > > > Cheers, > > Gaz.