Hey Eric,

My problem is solved!!!!!!!

Thanks a million :)

it's caused because I was loading the file into Firefox locally. If I
upload it to our server and run it, it works fine.

this was bcoz of some cross domain access policy in mozilla. I just
found it after seeing the error console msg.

Now all my referece (including .js and .php5) are to the same server.
Hence it works fine :) :)

Thanks a lot again..




On Feb 26, 1:49 am, Eric Garside <gars...@gmail.com> wrote:
> In Firefox, open up the Error Console, clear it, then try submitting
> the form and see if an error is getting tossed that way.
>
> Another option, is calling preventDefault(); on the event BEFORE your
> processing code, so the form won't post, even if an error/exception is
> thrown.
>
> $('#myForm').submit(function(evt){
>    evt.preventDefault();
>    // Other code here
>
> });
>
> On Feb 25, 3:14 pm, "antcj...@gmail.com" <antcj...@gmail.com> wrote:
>
> > Hey,.. The problem seems weird..
>
> > The same page which worked well in IE is not working when I put
> > the file into my server odibab.com and opened the page from IE.
>
> > So, If i keep the same html page in my local windows and use It works
> > But not when It is coming from odibab.com server.
>
> > Any idea why this happening?
>
> > Thanks in advance,
> > Antony Johnson
>
> > On Feb 26, 12:10 am, MorningZ <morni...@gmail.com> wrote:
>
> > > Chances are VERY likely that your function "showResponse" is throwing
> > > an error in JavaScript, making the rest of the script stop running,
> > > and as a result allowing the page/browser to make a normal, page
> > > changing, post
>
> > > comment out all the code in said function, or wrap it in a
> > > try...catch  to see if you can figure out what is happening
>
> > > On Feb 25, 1:53 pm, Mike Alsup <mal...@gmail.com> wrote:
>
> > > > > showRequest doesnt do anything. It just print the returned data.
>
> > > > > Hey one more thing I noted, this plugin works fine with IE but not
> > > > > Mozilla :(
>
> > > > > Any workaround??
>
> > > > I'm afraid you haven't provided enough information.  The plugin works
> > > > fine with both FF and IE so there is something more to the story on
> > > > your end.
>
> > > > Mike

Reply via email to