How to track redirects in firefox?

I would like to track and debug all kinds of redirects (server, javascript, html).

What is the easiest way to tell firefox about redirects and display redirect information, after which I should be able to resume redirection?

I tried NoRedirect and I can not get it to work.

+5
source share
4 answers
+4
source

Try the "persist" button on the netbugs netbugs tab. It will track all redirects.

+1
source

Firefox ( Firebug), script HTML window.location:

window.watch("location", function(id, oldv, newv) { debugger; return newv; });
document.watch("location", function(id, oldv, newv) { debugger; return newv; });

I think you can also extend this for top and self , but this is only useful if you use frames. I know this not so much, but it is better than nothing and certainly much better than all the other solutions listed here. I'm still looking for a way to track other types of JS redirects, such as window.navigate.

+1
source

You can try installing the firebug plugin and look at some tutorial on how to use it.

-2
source

All Articles