I have some HTML like this:
Code: 12345
Category: faucets
The reason your code isn't working is because [innerHTML]
is an attribute selector, and innerHTML
isn't an attribute on the element (which means that nothing is selected).
You could filter the span
elements based on their text. In the example below, .trim()
is used to trim off any whitespace. If the text equals 'Category:', then the element is included in the filtered set of returned elements.
var category = $('span').filter(function() {
return $(this).text().trim() === 'Category:';
}).next().text();
The above snippet will filter elements if their text is exactly 'Category:'. If you want to select elements if their text contains that string, you could use the :contains
selector (as pointed out in the comments):
var category = $('span:contains("Category:")').next().text();
Alternatively, using the .indexOf()
method would work as well:
var category = $('span').filter(function() {
return $(this).text().indexOf('Category:') > -1;
}).next().text();
A simpler solution is:
var category = $('span:contains("Category:") + span').text()
This is css plus the :contains
pseudo that is part of jQuery and supported by cheerio.