Select all links that don't have javascript in the href nor have a target of "_blank"

Select all links that don't have javascript in the href nor have a target of "_blank"

Is there a simpler/better/more elegant way to do this?

$('a[href]').not('a[href^=javascript]').not($('a[target=_blank]'))

Thank you! Scott.