I am using simple jQuery

$.get( .... );

Here instead of getting GET response I get OPTIONS.( checked in firebug Net)

Same code is working fine in Safari. Looks like some problem with Firefox.

Any workaround / solutions to fix this problem..

Thanks

Kurund

link|improve this question

67% accept rate
1  
Is the URL you're making the request to on the same domain as your page, or is this cross-domain? – JacobM Nov 16 '09 at 18:08
That's... incredibly strange. How about a minimal test case so we have a hope of figuring out what's going on? – outis Nov 16 '09 at 18:22
1  
Url called is cross-domain. – Kurund Jalmi Nov 16 '09 at 18:40
my ajax request url is example.org/ajaxrequest. So if I call it in example.org domain it works fine else GET gets converted to OPTIONS – Kurund Jalmi Nov 16 '09 at 18:43
Did you look at stackoverflow.com/questions/1256593/… – JacobM Nov 16 '09 at 19:06
show 2 more comments
feedback

5 Answers

The OPTION request what you see is the preflight request, you can read about that here:

It's there because you're requesting a cross-domain XMLHttpRequest so the browser has to check whether your request is allowed on the remote server or not.

There are two solutions to solve the problem (as mentioned above):

  • implement the response for the OPTION request with the corresponding Access-Control-* headers
  • use a JSONP request instead of simple JSON
link|improve this answer
feedback

This is likely due to restrictions on Javascript doing cross-domain XMLHttpRequests. This is generally not allowed for security reasons. See the question referenced above, or a similar question I asked.

To solve this problem:

Hope that helps!

link|improve this answer
feedback

I had the same issue, the cause I figured was in the html <head> section I had set the base element to this

<base href="http://local.develepment.url" />

Which I changed to

<base href="http://<?php echo $_SERVER['HTTP_HOST']?>/" />
link|improve this answer
feedback

KARASZI István's answer is accurate. I've also stumbled upon the same issue, here's my insights on it; http://engin.bzzzt.biz/2010/01/25/cross-domain-xhr-access-control-preflight/

link|improve this answer
feedback
up vote 0 down vote accepted

I hope this helps someone: http://kurund.com/blog/2010/09/09/how-to-call-external-site-url-using-jquery-ajax/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.