I need help with the coding of a custom function that I need to do.
The concept is simple : I offer the customer a list of ~20 products and then I ask them to select 5 products from the entire list using checkboxes.
And while they do select the products, it needs to update an hidden input so I will be able to insert it in my database.
We could be starting with something like this : http://jsfiddle.net/9mxh5/ but it only needs to be work so I can only select a number of checkboxes.
Here is some code we could use too
<input type="checkbox" name="products" value="product1" onChange="javascript:updateProducts();"/>
<input type="checkbox" name="products" value="product2" onChange="javascript:updateProducts();"/>
<input type="checkbox" name="products" value="product3" onChange="javascript:updateProducts();"/>
<input type="checkbox" name="products" value="product4" onChange="javascript:updateProducts();"/>
<!-- Hidden -->
<input type="hidden" name="myFiveProducts" value="THELIST" />
I have used the jsfiddle up there and adapt it like I would like to do : http://jsfiddle.net/ENxnK/15/
Thx in advance for your help.
