attribute filters for blank href?

attribute filters for blank href?

Is there any way to match attributes that are an empty string using attribute filters?

For instance, I might have a lot of anchor tags in a file with an href of "". How might I write a selector -- ie $("a[@href='null']") -- that would match this? Unfortunately removing the "null" -- $("a[@href='']") --ended up matching nothing

Thanks!