is there a way to for example have checkboxes that store their variable to be shown in a div later?
for example, I check off:
BMW
Mercedes
Volvo
Fiat
When I press a submit button, those that I checkmarked will be shown like this:
Manufacturers: BMW, Mercedes, Volvo, Fiat.
Do you think this is possible without php?
Thank you :))
this is a script that takes the checked elements and shows them in a div on submit http://jsfiddle.net/vrpMc/
note: this doesn’t actually store the data anywhere. So this is only really useful if you have some other plan for the data
edit: http://jsfiddle.net/vrpMc/3/ (fixes a typo)