HTTP script request "Aborted" status

What can cause a regular external script in my application to sometimes appear in the Firebug NET panel as โ€œAbortedโ€ and not load?

Is this a server problem, or is the browser working with nuts?

+4
source share
2 answers

This is a bug in FireBug that causes echo noise events. Abort is a normal condition for the end of an HttpRequest.

I think it will be fixed in the next version.

+2
source

This happens sometimes, for example:

In the hyperlink click event, we are trying to redirect to another URL via JavaScript / jQuery, but the behavior of the hyperlink is not blocked by default with preventDefault

0
source

Source: https://habr.com/ru/post/1308793/


All Articles