Created
July 7, 2018 18:47
-
-
Save san-kumar/97eea4e7960b99f121e31946234dc93d to your computer and use it in GitHub Desktop.
namecheap list domain names by price
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
r = jQuery('li.register').each(function() { | |
let e = jQuery(this); | |
let v = parseFloat(e.find('.domain-dollar-value').text().replace(/[^0-9\.]/g, '')); | |
if(v>0&&v<200){ | |
console.log(e.find('span.domain-name').text(), v); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment