A Tip For When You Do Cross Origin Requests

I created a login form that authenticated to a different domain than the origin of the html page. I had to configure the server to send the correct response headers and then everything worked, except in IE. Then I discovered that you have to tweak a jQuery configuration in order for IE to allow CORS requests:

jQuery.support.cors = true;