Thanks Amit, thats exactly where I'm upto. I've got an array of the options from the select box. but I dont know how to send this by ajax.
On Nov 16, 6:45 pm, Amit Rawat <[email protected]> wrote: > You can create an array in javascript. In that array place all the values of > the select box. > > var t= document.getElementById('your_select_box_id').options; > > for(var i=0;i<t.length;i++) > { > put value in the array > > } > > send the array by ajax -- You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/cake-php?hl=.
