views:

377

answers:

1

One of my customers gets "Internet explorer has modified this page to help prevent cross-site scripting" error on her website on IE8.

The page has several ajax calls to the same domain + calls to standard js files outside the domain such as google analytics.

How can I detect which call from the browser is actually causing it?

A: 

You can see your request and other error information with the help of IE Developer Toolbar. See its documentation for more info about it. It is addon of IE, once you install it, it will be integrated into IE.

Sarfraz
I have tried to find the reason with IE developer toolbar, but it does not seem to help identify which of the calls is causing the specific error.
Nir
@Nir: did you have a look at its documentation, it does provide a way to see the requests.
Sarfraz
I'm using debugbar to see the requests. I see ajax requests but they are from the same domain + a call to google analytics. I need to find a way to get to the exact request that is causing it.
Nir