2

I am trying to use jquery/ajax to pull some data from server. The ajax status returned from chrome is 0, but IE8 works fine.

I am banging my head about this issue. I am not doing any crossing web server stuff and tried to use absolute url.

Any other thing to check?

Thanks

pythoneer
  • 81
  • 2
  • 3

2 Answers2

1

Without more details, the best I can do is point you to the following resources and hope you'll see something that looks similar to your setup:

Note that the issues are usually cross-site requests or using file:/// instead of http[s]://

Community
  • 1
  • 1
no.good.at.coding
  • 20,221
  • 2
  • 60
  • 51
0

try 'return false' at the end of the ajax code in case you are using image instead of button element to submit the form. Worked for me.

anu
  • 1