I know cheerio.load() will load the html into the $
as below.
var cheerio = require('cheerio'),
$ = cheerio.load('<ul id = "fruits">...</ul>');
Is there a way I can get the same $
using raw jQuery?
I know cheerio.load() will load the html into the $
as below.
var cheerio = require('cheerio'),
$ = cheerio.load('<ul id = "fruits">...</ul>');
Is there a way I can get the same $
using raw jQuery?