How can I match all a-tags which have a font-size of 70%?
<a href="/tag/customersproducts" style="font-size: 70%; text-decoration: none;">customersproducts</a>
<a href="/tag/dealers" style="font-size: 70%; text-decoration: none;">dealers</a>
<a href="/tag/dealershops" style="font-size: 101%; text-decoration: none;">dealershops</a>
<a href="/tag/dealersvendors" style="font-size: 120%; text-decoration: none;">dealersvendors</a>
<a href="/tag/deliverymethods" style="font-size: 70%; text-decoration: none;">deliverymethods</a>
<a href="/tag/departements" style="font-size: 70%; text-decoration: none;">departements</a>
<a href="/tag/departments" style="font-size: 104.545%; text-decoration: none;">departments</a>
This does not work:
$('a[style*=font-size:70%]')
This is the page: http://cakeapp.com/tags/all with installed jQuery for testing...