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've created an HTML form that has checkboxes that are checked dynamically due to a variable from a previous page (there is only one checkbox checked each time).

What I'd like is to echo the value of this checkbox out (to make the main title of the page so javascript alert is not adapted).

Example :

<html>
    <body>
    <h1>Here I'd like to echo the value of the checkbox that is checked<h1>
    <form id="myform" name="myform">
       <p>
       <input type="checkbox" name="car" id="porsche" /> <label for="porsche">porsche</label><br />
       <input type="checkbox" name="car" id="ferrari" /> <label for="ferrari">ferrari</label><br />
       </p>
    <script type="text/javascript">

    function loopForm(form,car) {
       var cbResults = 'Checkboxes: ';
       var radioResults = 'Radio buttons: ';
       for (var i = 0; i < form.elements.length; i++ ) {
          if (form.elements[i].type == 'checkbox') {
             if (form.elements[i].id == car) {
                 form.elements[i].checked = true ;
             }
          }
        }
     }
     ...
     // This function will check one of the two checkboxes
     loopForm(document.myform,car);
     </script>
     </body>
     </html>
share|improve this question
echo out where? I don't understand what you want to do. – Rijk Sep 1 '11 at 10:13
@Rijk van Wel Echo it on the page. – Bruno Sep 1 '11 at 10:15
It's always nice to be downvoted without knowing why. – Bruno Sep 1 '11 at 10:28
1  
I don't get it. What do you want to output where? What does "to make the main title of the page" mean and what javascript alert are you talking about? – Sebastian Wramba Sep 1 '11 at 10:28
@Sebastian Wramba I've edited my post to put an example. – Bruno Sep 1 '11 at 10:29
show 2 more comments

3 Answers

up vote 0 down vote accepted

The best I can do, I'm afraid, is the following:

var inputs = document.getElementsByTagName('input');
var checkboxes = [];

for (i=0; i<inputs.length; i++){
    if (inputs[i].type == 'checkbox' && inputs[i].getAttribute('checked') == 'checked'){
        checkboxes.push(inputs[i].value);
    }
}

document.getElementsByTagName('h1')[0].innerHTML = checkboxes;

JS Fiddle demo.

This is slightly clunky, but does, at least, use plain JavaScript; albeit it does seem to require that the checked checkboxes be marked up as following: checked="checked".

share|improve this answer

You can use jQuery to achieve this. Listen for the change() event on the checkboxes and change the text() of the h1 when this happens.

share|improve this answer

You can try my example on jsfiddle.net

share|improve this answer

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.