Skip to content
Advertisement

How to select values from li elements in Cheerio/jQuery?

JavaScript

I want to extract the values from the product__sizes-size-1 classes and transform them into an array. I have tried to use a .map() function to try and populate an array but it appears empty. To make it clear I want to have the array populated like [6,7,8,9.5] etc…

JavaScript

Advertisement

Answer

Your approach is correct, you just use the wrong selector. Use product__sizes-size-1 instead:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement