vote up 2 vote down star
3

How to use jquery to get the checked checkboxes value,and put it into a textarea immediately?

just like this code

 <html>
  <head>
 </head>
 <body>
  <div id="c_b">
   <input type="checkbox" value="one_name" checked>
   <input type="checkbox" value="one_name1">
   <input type="checkbox" value="one_name2">
  </div>  
 <textarea id="t"></textarea>
 </body>
 </html>

if the id="c_d" is update by ajax ,the below of altCognito's code does't work,Are there any good solution?

flag

80% accept rate
did you want all or one at a time? – TStamper Apr 24 at 15:08
all and one is ok? – lanqy Apr 24 at 15:43

7 Answers

vote up 6 vote down check

Here's one that works. (see the example)

 function updateTextArea() {         
     var allVals = [];
     $('#c_b :checked').each(function() {
       allVals.push($(this).val());
     });
     $('#t').val(allVals)
  }
 $(function() {
   $('#c_b input').click(updateTextArea);
   updateTextArea();
 });
link|flag
Ah ha! Excellent. You've taken into account both likely scenarios. Good work sir. ;) – KyleFarris Apr 24 at 15:19
vote up 0 vote down
$("#t").text($("#cb").find(":checked").val())
link|flag
Multiple checkboxes could be checked at a time. – KyleFarris Apr 24 at 15:12
good call =) d – mkoryak Apr 24 at 15:51
vote up 1 vote down

Your question is quite vague but I think this is what you need:

$(function() { 
    $('input[type="checkbox"]').bind('click',function() {
        if($(this).is(':checked')) {
            $('#some_textarea').html($(this).val());
         }
   });
});

Edit: Oh, okay.. there you go... You didn't have the HTML up before. Anyways, yeah, I thought you meant to put the value in a textarea when it gets clicked. If you want the checked checkboxes' values to be put into the textarea (maybe with a nice comma-seperation) on page load it would be as simple as:

$(function() { 
    $('#c_b input[type="checkbox"]:checked').each(function() { 
        $('#t').append(', '+$(this).val());
    });
});

Edit 2 As people have done, you can also do this to shortcut the lengthy selector I wrote:

$('#c_b :checkbox:checked').each(function() {
    $('#t').append(', '+$(this).val());
});

... I totally forgot about that shortcut. ;)

link|flag
vote up 0 vote down

anyway, you propably need somethign like this:

 var val = $('#c_b :checkbox').is(':checked').val();
 $('#t').val( val );

This will get the value of the first checked checkbox on the page and insert that in the textarea with id='textarea'.

Note that in your example code you should put the checkboxes in a form.

link|flag
vote up 0 vote down

If you want to insert the value of any checkbox immediately as it is ebing ckecked then this should work for you

  $(":checkbox").click(function(){
    $("#id").text(this.value)
  })
link|flag
Doesn't account for multiple values and unchecking checkboxes – Rob Apr 24 at 15:17
vote up 1 vote down
   $(document).ready(function() {
        $(':checkbox').click(function(){
           var cObj = $(this);
           var cVal = cObj.val();
           var tObj = $('#t');
           var tVal = tObj.val();
           if( cObj.attr("checked")) {
              tVal = tVal + "," + cVal; 
              $('#t').attr("value", tVal);
           } else {
              //TODO remove unchecked value.
           }
        });
    });
link|flag
You've way over-complicated it. Also, you generally don't set the value of a textarea with the value parameter--the value of a textbox is it's innerHTML. And if you were to set some element's value, it's normally best to use the 'val()' method for browser abstraction purposes. – KyleFarris Apr 24 at 15:18
vote up 0 vote down

Hi,

I"m a beginner at this and I'm trying to delete that comma and place an | instead. Unfortunatly nothing seems to be working for me. THose things you guys explain about the shortcuts and .append doens't work. The other thing I don't understand is where the comma is generated? Something automatic? "And I thought nothing happened automatic.."

Ok, I've used your examples to get what I need.

function updateSupportedLanguage() {         
        var values = [];
        $('#SupportedLanguage :checked').each(function() {
            values.push($(this).val());
        });

        $('#LanguageValue').val(values)
    }
    $(function() {
        $('#SupportedLanguage input').click(updateSupportedLanguage);
        updateSupportedLanguage();
    });

I hope someone can tell me how to lose the freaking , and replace a | instead :)

Thanks.

link|flag

Your Answer

Get an OpenID
or

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