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!=\"\"]\')
Has 'data-attributename' and its value is not empty:
$('[data-attributename]:not([data-attributename=""])')
Has 'data-attributename' empty or not:
$('[data-attributename]')
JS Fiddle example