You can use the has-attribute selector, for example:
$("[myAttribute]")
To get elements with that attribute with that specific value, use the attribute-equals selector, like this:
$("[myAttribute='Hello']")
You can find the full list of Attribute Selectors available here.