Hey... im trying to post via ajax an array of checkboxes with the same id..
if i do:

$(".btn").click( function(){
  $.post("request.cfm",{
     valor: $("#checkboxes").value
  }, function(){
    //any callback
  }
});
on firebug i see the posting is only sending the 1st value of 4 #checkboxes in the form...

Any one knows why??
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to