Page 1 of 1
pictures included by scripts
Posted: Thu Jul 06, 2006 5:44 pm
by Master X
Is it possible to detect if a picture have been included by a javascript? Or even better, which script has loaded it?
But I do not know if this is possible to track down. Perhaps someone knows more.
Re: pictures included by scripts
Posted: Thu Jul 06, 2006 11:01 pm
by rick752
Master X wrote:Is it possible to detect if a picture have been included by a javascript? Or even better, which script has loaded it?
But I do not know if this is possible to track down. Perhaps someone knows more.
there's a little trick I use for that. If I want to know if something is generated with JS, I just activate a:
*.js*
...filter.
If it doesn't show up on a reload, then I can assume that is is from js. After that you will have to find which one is doing it from the 'script' listings in the blockable items list.
Re: pictures included by scripts
Posted: Fri Jul 07, 2006 12:38 am
by Peng
rick752 wrote:After that you will have to find which one is doing it from the 'script' listings in the blockable items list.
To make that easier, most often you can find which script is the culprit by clicking on the headers in the sidebar so it won't be sorted, and see if the image is in the list immediatly after a script.
Re: pictures included by scripts
Posted: Fri Jul 07, 2006 1:19 am
by rick752
Peng wrote:
To make that easier, most often you can find which script is the culprit by clicking on the headers in the sidebar so it won't be sorted, and see if the image is in the list immediatly after a script.
Right you are, Peng. That is USUALLY the case (even though there are exceptions from time to time) ... but that would still be the best "first" way to check.
Posted: Fri Jul 07, 2006 6:43 am
by Peng
Yup.

Posted: Mon Jul 17, 2006 4:50 pm
by Wladimir Palant
Unfortunately Adblock Plus can't do this - Gecko doesn't give JavaScript access to the JavaScript stack (even though C++ code should be able to do this sort of thing).