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!=\"\"]\')
$('[data-go-to!=""]:[data-go-to]').each(function() { // Do Your Stuff });