| Author |
Processing checkboxes data.
|
ashlan cooper
Greenhorn
Joined: Nov 23, 2010
Posts: 11
|
|
Hey there, I'm trying to process the data in form I created.
this is my code
but I have a question in retrieving the data from the checkboxes. How do I implement what the user has selected into the if statement.
Thanks in advance.
|
 |
Marek Krzeminski
Greenhorn
Joined: Mar 13, 2011
Posts: 10
|
|
I'd use JavaScript to process the user's response.
I use the jQuery framework to make writing JavaScript easier. With it you could do something like:
$( "form input:checkbox").each( function() {
//do what ever you need here per check box object
}
|
3D OpenGL, C++ Game Development Video Tutorials @
www.marek-knows.com
|
 |
 |
|
|
subject: Processing checkboxes data.
|
|
|