Skip to content

Instantly share code, notes, and snippets.

@versluis
Last active April 10, 2019 22:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save versluis/1b7d6012cc3e6bae2cb5c4f836a40796 to your computer and use it in GitHub Desktop.
Save versluis/1b7d6012cc3e6bae2cb5c4f836a40796 to your computer and use it in GitHub Desktop.
Make empty links disappear from the DOM
<p class="one"><a href=''>This line shall vanish.</a></p>
<p class="one"><a href='https://versluis.com'>This line shall prevail.</a></p>
<p>The End.</p>
<script>
// make empty links vanish
$('.one a').each(function() {
if(!$(this).attr('href')) {
$(this).parent().hide();
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment