[jQuery] Re: Does IE simply not work or...

2009-02-17 Thread webspee...@gmail.com
OK, I got it. I had to put the autocomplete inside the document ready block. Thank you for your help. Minor tweaks and all is well. ... On Feb 17, 8:37 am, Michael Price wrote: > You have another comma at the end of this line: > pdiro: $("#pdirection").val(), > > Get rid of that and see if it

[jQuery] Re: Does IE simply not work or...

2009-02-17 Thread webspee...@gmail.com
Thanks, cleaning up the trailing commas got me past that issue. Now what I'm seeing is when the page loads, it says "IE cannot open operation failed" and displays error page. I've narrowed it down to the autocomplete code below. I copied that block of code and added the extra parms, but that

[jQuery] Re: Does IE simply not work or...

2009-02-17 Thread Hernando Gisinger
pdiro: $("#pdirection").val(), <-- this "," 2009/2/17 webspee...@gmail.com > > That is what I figured. > > How does this block of code look? > > [html] > $.post("../pu/puajax-x.html",{ > mode: "contactrow", > loginid: $("#loginid").val(), > field: $("#sortf

[jQuery] Re: Does IE simply not work or...

2009-02-17 Thread Michael Price
You have another comma at the end of this line: pdiro: $("#pdirection").val(), Get rid of that and see if it helps. webspee...@gmail.com wrote: That is what I figured. How does this block of code look? [html] $.post("../pu/puajax-x.html",{ mode: "contactrow", logi

[jQuery] Re: Does IE simply not work or...

2009-02-17 Thread webspee...@gmail.com
That is what I figured. How does this block of code look? [html] $.post("../pu/puajax-x.html",{ mode: "contactrow", loginid: $("#loginid").val(), field: $("#sortfield").val(), prowid: $("#prowid").val(), pdiro: $("#pdirection"

[jQuery] Re: Does IE simply not work or...

2009-02-16 Thread Klaus Hartl
Look out for trailing commas in object literals... { foo: "bar", that: this, } ^ --Klaus On 16 Feb., 21:58, "Dean C. Reed" wrote: > Or is there a common work around? > > I spent a few days getting familiar with JQuery and it works perfectly   > in Firefox. I go

[jQuery] Re: Does IE simply not work or...

2009-02-16 Thread MorningZ
And rest assured that the library (including the validation plugin) FULLY work with IE, it's your code and how you are using jQuery that is the issue On Feb 16, 3:58 pm, "Dean C. Reed" wrote: > Or is there a common work around? > > I spent a few days getting familiar with JQuery and it works p

[jQuery] Re: Does IE simply not work or...

2009-02-16 Thread Karl Swedberg
a link to a test page would help us diagnose your problem. or at least a little of your code. --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Feb 16, 2009, at 3:58 PM, Dean C. Reed wrote: Or is there a common work around? I spent a few days getting fami