I have an object (in this case a rating object from js-kit) that I want to make invisible if the rating value is \'unrated\'. I\'m having trouble with getting the right jQue
You might consider using the hide() / show() methods as well.
$(".js-rating-labelText:contains('unrated')").hide()