Why am I getting an OPTIONS request instead of a GET request?
<script src=”http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js” type=”text/javascript”></script> <script> $.get(“http://example.com/”, function(data) { alert(data); }); </script> it does an OPTIONS request to that URL, and then the callback is … Read more