Hello everyone,
I'm am experiencing some strange beahavior with a website.
I have a page that performs a simple AJAX request to fill a div. The data is fetched from a page in the same domain.
When I perform the request using
http://localhost/Dir/page.aspx? ....
The requests work perfectly, but when using
http://127.0.0.1/Dir/page.aspx? or http://public_ip/Dir/page.aspx? .....
My requests are simply ignored. I've used Firebug to track requests, and not even a single ajax request is performed. Normal requests ( such as fetching the main page that invokes the ajax code) works fine on both scenarios.
Does anyone have any ideas of what might be happening?
Thanks in advance !