guys. When I do this with cheerio:
$(".img-class-name").attr("src");
I just get part of the string:
"data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
The content is right but its was cut. Cheerio adds these slashes /////// to replace the rest of the real data. It should be a much longer string. Is there a limit for string size in Cheerio? Whats is happening here?