Enabling Cross-Domain AJAX in Firefox
11 June 2007Tonight I have finally conquered one of the biggest annoyances of the past year for me (in terms of development at least). Developing web applications with Firefox is a pleasure because of the “firebug extension”:http://getfirebug.com/. Nothing comes close in Safari. Unfortunately, Firefox doesn’t allow cross-domain XMLHttpRequests for security reasons. While good security is a plus, this restriction can make development and testing a real chore. For those of us willing to risk the security vulnerability, here is how to bypass the cross-domain restriction once and for all.
#
Close Firefox \#
Edit the file **prefs.js** in your Firefox user profile folder \#
Add the following line anywhere in the file:
user_pref("capability.policy.default.XMLHttpRequest.open",
"allAccess");
Save the file and re-open Firefox. You can now risk your life and limb by doing XHR (XMLHttpRequests)’s to whatever domains you want - congratulations!