Created
December 9, 2016 14:20
-
-
Save Garbee/73ac05ad5daf0e27ee84a30171b6150b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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