I'm trying to strip out the single quote from my options in a select box, but the below doesn't appear to be working:

$(function(){
  $("#agencyList").each(function() {
    $("option", $(this)).each(function(){
      var cleanValue = $(this).text();
      cleanValue.replace("'","");
      $(this).text(cleanValue);
    });
  });
});

It still has the single quote. The select is built with a JSTL forEach loop. Can anyone see what might be going wrong?

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

You have to assign the new value by using cleanValue = cleanValue.replace(...). Also, if you want to replace all single quotes, use a global RegEx: /'/g (which replaces all occurrences of single quotes):

$(function(){
  $("#agencyList").each(function() {
    $("option", this).each(function(){
      var cleanValue = $(this).text();
      cleanValue = cleanValue.replace(/'/g,"");
      $(this).text(cleanValue);
    });
  });
});

Another adjustment:

  • Replaced $(this) with this, since it's not necessary to wrap the this object in a jQuery object.
  • Your code can be optimized even more my merging two selectors:

    $(function(){
      $("#agencyList option").each(function() {
          var cleanValue = $(this).text();
          cleanValue = cleanValue.replace(/'/g,"");
          $(this).text(cleanValue);
      });
    });
    
link|improve this answer
I updated my code to that, but it doesn't seem to work either. – Risu Dec 2 '11 at 21:53
@Risu Make sure that the elements exist (a parent with id="agencyList", with <option> elements as children). – Rob W Dec 2 '11 at 21:57
That works. It would seem that my choice in multiselect ui is misbehaving and not allowing the removal. – Risu Dec 2 '11 at 22:00
feedback

Your Answer

 
or
required, but never shown

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