Skip to content

Instantly share code, notes, and snippets.

@tonysaffo
Created February 14, 2017 21:47
Show Gist options
  • Save tonysaffo/d35e1f7542a6f84c1fe9f37da3629226 to your computer and use it in GitHub Desktop.
Save tonysaffo/d35e1f7542a6f84c1fe9f37da3629226 to your computer and use it in GitHub Desktop.
<script>
$(document).ready(function(){
var imgs = document.getElementsByClassName('swipebox');
for (var i = imgs.length; i > 0; i--) {
//console.log("string",imgs[i]);
if ($('.swipebox').eq(i).attr('href') == "") {
console.log($('.swipebox').eq(i).parent());
$('.swipebox').eq(i).parent().remove();
}
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment