Closed Jako closed 6 years ago
The selector inside the silblings call is not valid jQuery 1.8.1 and gives an error.
$j("'.$fieldtype.'[name='.$fieldname.']").siblings("img[style:contains(\'cursor:help\')]") …
A workaround that worked for me is to replace [style:contains(\'cursor:help\')] with [style*=\'cursor\\\\:help\'] which I think does the same. :-)
[style:contains(\'cursor:help\')]
[style*=\'cursor\\\\:help\']
The selector inside the silblings call is not valid jQuery 1.8.1 and gives an error.
$j("'.$fieldtype.'[name='.$fieldname.']").siblings("img[style:contains(\'cursor:help\')]") …