jAndy
jAndy

Reputation: 236202

Cross-domain AJAX calls in Safari and Chrome

Firefox and Internet Explorer both have settings where a user may enable forbidden cross-domain calls.

Is there a similar setting or option in Safari and/or Chrome?

Upvotes: 16

Views: 17353

Answers (1)

Nick Craver
Nick Craver

Reputation: 630637

Not sure about safari, but Chrome has a command line switch for this:

chrome.exe --disable-web-security

You can view a full list (as of when it was posted!) of command line options for chrome here.

Upvotes: 21

Related Questions