Detect Order In Which Checkboxes Are Clicked
I am trying to make a page that allows users to select 8 checkboxes from a total of 25. Im wondering, how to detect the exact order in which they check them. I am using a plain htm
Solution 1:
- create a hidden input field with the order
- update this input field when something changes
- you'll have the order ready to be processed by PHP
Post a Comment for "Detect Order In Which Checkboxes Are Clicked"