I look for all links, which have a second classname, which starts with "_0". This classname works as a path for my internal use.
I tried the following queries with no success:
$('a.hint [class^=_0]') // hint is the name for the first class
$('a [class^=_0]')
$('a [class^=_0]')
Is there a short handy query to approach this?