3
How do I exchange the value of checkbox
when he is selected?
Code done so far it shows me Object.
$("#checkbox").change(function(){
var atual = $("#checkbox").val();
$("p").text(atual); // vamus supor que aqui o valor seja 23
var troca = $("input[type=checkbox]:checked").val("2"); // quando eu faço isso gostaria que ele alterece o valor daquele checkbox para 2
$("p").text(troca);
});
You want to exchange the value or text ?
– LucaoA
I want to change the value change 23 to 2
– bryant