I\'m trying to select all elements that have a data-go-to attribute that is not empty.
data-go-to
I\'ve tried $(\'[data-go-to!=\"\"]\') but oddly enou
$(\'[data-go-to!=\"\"]\')
This works for me:
$('.data .title td[data-field!=""]')