¿Por qué recibo una solicitud de OPCIONES en lugar de una solicitud GET?

<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> realiza una solicitud de OPCIONES a esa URL, y luego la devolución de llamada nunca...