Block image or element?

Posting here is no longer possible, please use the forum of a filter list project, such as EasyList
Locked
Azo
Posts: 2
Joined: Fri Sep 09, 2011 2:32 am

Block image or element?

Post by Azo »

What is best? To block one image or hide the element? In terms of browser performance - stability and speed. :?:

Example:

http://www.example.com/image.png

or

example.com##image

* Sorry about my poor english.
Michael
Posts: 1361
Joined: Sat Dec 19, 2009 12:29 pm

Re: Block image or element?

Post by Michael »

Azo wrote:What is best? To block one image or hide the element? In terms of browser performance - stability and speed. :?:
Blocking images reduces the amount of data you download from the Internet and is therefore the preferred method for subscription authors to remove images.
Azo
Posts: 2
Joined: Fri Sep 09, 2011 2:32 am

Re: Block image or element?

Post by Azo »

Thank you for the reply, but the question was misunderstood. Both ways of blocking the image will work. I just don't know what method will make my navigation faster. The image will be hided in both ways.
User avatar
Hubird
Posts: 2850
Joined: Thu Oct 26, 2006 2:59 pm
Location: Australia
Contact:

Re: Block image or element?

Post by Hubird »

Code: Select all

http://www.example.com/image.png
Adding the above into ABP will prevent the image form ever loading (blocking it), potentially improving performance.

Code: Select all

example.com##image
Above is a hiding rule, image is still download but hidden before you get a chance to see it.

As the image is still downloaded you will not get any performance improvements.

Hiding rules like above are generally only used to to remove empty space where an ad once was

Code: Select all

example.com##EmptyAdSpace
As Michael said, blocking is the preferred way of dealing with unwanted images.
Locked