Here is a little filter I wrote to eliminate the "Ad Pause" for lack of a better term that you see every so often at Dslreports. Actually it's only a work around since I didn't take the time to figure out how they are doing it. Anyway the filter seems to be working. Enjoy!
Name = "DSL Reports Ad Pause Unpauser"
Active = TRUE
URL = "www.dslreports.com/forum/*"
Bounds = "$NEST(<as*>,Continue to the link I clicked,</a>)"
Limit = 256
Match = "*"
Replace = "<script>"
"history.go(0);"
"</script>"
*L* I see now why it didn't work for me -- my start.js redifines history.go :) // Override these history methods.
function go(n) { return true; }
function back() { return true; }
function forward() { return true; }
if (!isInternetExplorerPROX)
{
history.go = go;
history.back = back;
history.forward = forward;
}
Anywya, you may want to change the <script> to <script type="text/javascript"> -- especially when using MSIE. I have found cases where that bugfest (it is not a browser
) tries to perform OS methods when only using <script>, because they may be valid VBScript methods.