Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. const cheerio = require('cheerio');
  2. const $ = cheerio.load(response); #response = html page source
  3.  
  4. $(function() {
  5. $('[data-productsku]').each(function() {
  6. console.log($(this).attr('data-productsku'));
  7. });
  8. });
  9.  
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement