Skip to content

Instantly share code, notes, and snippets.

@Garbee
Created December 9, 2016 14:20
Show Gist options
  • Save Garbee/73ac05ad5daf0e27ee84a30171b6150b to your computer and use it in GitHub Desktop.
Save Garbee/73ac05ad5daf0e27ee84a30171b6150b to your computer and use it in GitHub Desktop.
return !$('.onephone:eq(0)').is(':empty') && !$('.onephone:eq(1)').is(':empty');
//equals
const items = document.querySelectorAll('.onephone');
return !items[0].childNodes.length > 0 && ! items[1].childNodes.length > 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment