JSFiddle - React, Tailwind, and code Playground
HTML
<a href="#hello">hello</a>
<a href="javascript:alert('hello');">hello 2</a>
JavaScript
alert($('a:not([href*=javascript]), a:not([href^=#])').length);
<a href="#hello">hello</a>
<a href="javascript:alert('hello');">hello 2</a>
alert($('a:not([href*=javascript]), a:not([href^=#])').length);