Skip to content

Instantly share code, notes, and snippets.

@san-kumar
Created July 7, 2018 18:47
Show Gist options
  • Save san-kumar/97eea4e7960b99f121e31946234dc93d to your computer and use it in GitHub Desktop.
Save san-kumar/97eea4e7960b99f121e31946234dc93d to your computer and use it in GitHub Desktop.
namecheap list domain names by price
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