Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a shoppingcart that displays product options in a dropdown menu, and I want to make some other fields on the page only visible if they select "Yes" in the previous option. The problem is that the shopping cart also includes the price modifier in the text, and that can be different for each product. So if I do this it works:

 $(document).ready(function() {
  $('select[id="Engraving"]').change(function() {
   var str = $('select[id="Engraving"] option:selected').text(); 
   if (str == "Yes (+ $6.95)") {
    $('.engraving').show();
   } else {
    $('.engraving').hide();
   }
  });
 });

However I would rather use something like this:

 $(document).ready(function() {
  $('select[id="Engraving"]').change(function() {
   var str = $('select[id="Engraving"] option:selected').text(); 
   if (str *= "Yes") {
    $('.engraving').show();
   } else {
    $('.engraving').hide();
   }
  });
 });

Which doesn't work.

I only want to perform the action if the selected option contains the word "Yes", and would ignore the price modifier.

I appreciate any help.

share|improve this question
4  
Change your selector from $('select[id="Engraving"]') to $('#Engraving'). It will be faster. And inside the change handler, this refers to the #Engraving element, so you can do $(this).find('option:selected'). – user113716 Aug 13 '10 at 21:33

3 Answers

up vote 280 down vote accepted

Like this:

if (str.indexOf("Yes") >= 0)

Note that this is case-sensitive.
If you want a case-insensitive search, you can write

if (str.toLowerCase().indexOf("yes") >= 0)

Or,

if (/yes/i.test(str))
share|improve this answer
Wow, that was fast. Worked Perfect. Thank you. – Jordan Garis Aug 13 '10 at 21:34
3  
indexOf is not supported by IE unless you manually declare the prototype – isJustMe Apr 2 '12 at 14:04
2  
2  
@Rafael.IT: You're thinking of arrays. – SLaks Jun 7 '12 at 16:59
2  
@Justin: Yes; for arrays. IE has always supported indexOf on strings. – SLaks Apr 12 at 3:07
show 6 more comments

You could use search or match for this.

str.search( 'Yes' )

will return the position of the match, or -1 if it isn't found.

share|improve this answer
3  
Good to know alternatives but using indexOf is faster. stackoverflow.com/questions/354110/… – Blowsie Feb 2 '12 at 15:55
1  
yeah but also not supported on IE – isJustMe Feb 14 '12 at 16:20
2  
It is for strings, see w3schools.com/jsref/jsref_indexof.asp – Ian Stanway Jun 7 '12 at 16:57

Another way Firefox Only:

var testStr = "This is a test";

if(testStr.contains("test")){
    alert("String Found");
}
share|improve this answer
Which browser you're using? "TypeError: Object This is a test has no method 'contains'" <~ Chrome 25 – yoshi Mar 14 at 13:41
yoshi, Looks like this is only available in FireFox... sorry for the confusion, was in front of FF didn't think to test in other browsers... – Andy Braham Mar 19 at 21:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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