>
> On 04/12/2016 06:34:01 PM CyberSpider wrote:
Attribute selector embraced by square brackets '[]' is used to find elements which have certain attributes matched in the source document:
E[attr] -- any E element that has attribute 'attr' regardless of its value;
E[attr=val] -- any E element that has attribute 'attr' with value of 'val';
E[attr~=val] -- any E element that has attribute 'attr' containing value of 'val';
E[attr|=val] -- any E element that has attribute 'attr' with value of 'val' or starting with 'val-';