vote up 1 vote down star

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 geting the right jquery selector to do this.

It seems like this should work...

$(".js-rating-labelText:contains('unrated')").css("visibility", "hidden");

...but does not. .js-rating-labelText is a class set on the text.

flag
4  
Can you paste the HTML you are running this against? – Paolo Bergantino May 1 at 22:01
Its a little complicated (for me at least) as the contents of the ratings div are being filled in by a js-kit javascript function and so are not available at design time. The div is empty (to start) and looks like this: <div id="ratingDiv" class="js-kit-rating"></div> – Gene May 1 at 22:20
Strangely, changing the jquery function to add a second parenthesis -- which just looks wrong as it has no matching open paren... $("#ratingDiv:contains('unrated'))").css("visibility", "hidden"); ...causes the first item in the list to be rendered invisible. – Gene May 1 at 22:22
Here is more code: <ul><% foreach (var item in Model.Companies) { %> <li> <div id="ratingDiv" class="js-kit-rating"></div> </li> <% } %> </ul> and script... <script type="text/javascript"> $(document).ready(function() { $("#ratingDiv:contains('unrated'))").css("visibility", "hidden"); }); </script> – Gene May 1 at 22:25
I've tried the selector on both the id (#ratingDiv) && the class (.js-rating-labelText) with the same result. – Gene May 1 at 22:27
show 1 more comment

7 Answers

vote up 1 vote down check

Is there another way to select an element based on the text contents?

Try this:

$('.js-rating-labelText').filter(function(){
  return (/unrated/i).test($(this).text())
}).css('visibility', 'hidden');
link|flag
Yeah! I set the value based on the class of the parent and used the .hide() method but this worked for me. Thank you so much! $('.js-kit-rating').filter(function() { return (/Unrated/i).test($(this).text()) }).hide(); – Gene May 1 at 23:33
You're welcome. Glad it finally worked. – brianpeiris May 1 at 23:38
vote up 0 vote down

Based on the HTML you provided,I don't see where the 'unrated' text you're testing for is coming from.

However, if that is the entirety of the text in that div, just test for it directly.

if ($('.js-rating-labelText').text() == 'unrated'){
  $(this).hide();
}
link|flag
vote up 0 vote down

Perhaps the issues is with the ":contains('Unrated')" part of the function. As changing the text to any random value produces the same result:

$("#ratingDiv:contains('somerandomtext'))").hide();
link|flag
Is there another way to select an element based on the text contents? – Gene May 1 at 23:13
vote up 0 vote down

You might consider using the hide() / show() methods as well.

$(".js-rating-labelText:contains('unrated')").hide()

link|flag
$(".js-rating-labelText:contains('Unrated'))").hide(); Makes both rated and unrated text dissapear. – Gene May 1 at 23:04
vote up 0 vote down

Here is some of the html coming from the javascript function:

<div class="js-kit-rating" id="ratingDiv" style="width: 86px; visibility: hidden;" jk$initialized="true" path="/business/blogger-com" permalink="/businessblogger-com" freeze="yes" starcolor="Golden">
  <table class="js-ratings-tableWrapper" border="0" cellSpacing="0" cellPadding="0">
    <tbody>
      <tr>
        <td>
          <div class="js-ratingWrapper" style="width: 80px;">
          <div style="float: left; cssfloat: left;">
              <div style="width: 80px; height: 15px;">
<div class=" js-kit-objIcon" style="width: 16px; float: left; height: 15px; cssfloat: left;" imageURL="//js-kit.com/images/stars/golden.png">
  <img style="display: none;" src="//js-kit.com/images/stars/golden.png" complete="complete"/>
<div class=" js-kit-objIcon" style="width: 16px; float: left; height: 15px; cssfloat: left;" imageURL="//js-kit.com/images/stars/golden.png"/>
<div class=" js-kit-objIcon" style="width: 16px; float: left; height: 15px; cssfloat: left;" imageURL="//js-kit.com/images/stars/golden.png"/>
<div class=" js-kit-objIcon" style="width: 16px; float: left; height: 15px; cssfloat: left;" imageURL="//js-kit.com/images/stars/gray.png">
  <img style="display: none;" src="//js-kit.com/images/stars/gray.png" complete="complete"/>
<div class=" js-kit-objIcon" style="width: 16px; float: left; height: 15px; cssfloat: left;" imageURL="//js-kit.com/images/stars/gray.png"/>
<div class=" js-rating-labelText">
link|flag
From what you've told us so far, I see no reason why it shouldn't work. It would be very helpful, if you're up to it, to duplicate the problem on a publicly available host (e.g. jsbin.com). – brianpeiris May 1 at 22:53
vote up 1 vote down

Make sure your code is running after the js-kit function has populated the text, and not before it.

link|flag
It does follow the js-kit script call. Thanks. – Gene May 1 at 22:44
vote up 1 vote down

You could run a regex on the contents, using innerhtml or .html. It'd be a similar way of finding if it contains a certain string.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.