Sequential Order Of Checkboxes Selected Php March 02, 2024 Post a Comment At the moment, my html code is: hostSolution 1: you'd need to add a some javascript to get that info.<inputtype="hidden"name="order"/><!-- goes inside the form -->CopyHere is an examply using jQuery:$('[name*="col_list"]').change(function(){ if ($(this).prop('checked')){ $('[name="order"]').val($('[name="order"]').val()+','+$(this).val()) } }); CopyThis should work fairly well with one caveat: If the user un-checks then re-ckecks a checkbox it will be added to order twice.order should result in something like:,host,atom_name CopyEditBaca JugaModularize And Abstract React Component FunctionalityHow To Check Multiple Checkboxes In JavascriptDisplaying "required" In Just One Checkbox (dynamic Display)Fixed some typos and here is a fiddleSolution 2: If the order is important you will have to implement some form of JavaScript or AJAX and call it when the check boxes are checked. Forms do not track the order in which fields are filled. JavaScript is well suited to this because it can trigger at the time of the click. An alternative to AJAX could be adding a hidden field element and using JS to store the order clicked. Then it would be passed when the form is clicked. Share You may like these postsHow To Map Dynamic Array Of Input FieldsHtmlpurifier, Check Entire Html DocumentTidying Html5 Output Indentation In PhpAuto-populating Select Boxes Using Jquery And Ajax - Not Working In Anything Newer Than 1.3.2 Post a Comment for "Sequential Order Of Checkboxes Selected Php"
Post a Comment for "Sequential Order Of Checkboxes Selected Php"