Answers for "html checkbox dropdown"

17

html checkbox

<!--
  You can also group multiple checkboxes by giving them the same "name".
  When posted to PHP, all the checked boxes' values will appear in the
  $_POST array under an index with the same name as your checkboxes.

  E.g. if we check "bananas" and "apples" below and post the form then
  our $_POST array will look something like this:
  ['fruit' => ['bananas', 'apples']]
-->
<form>
  <label>
    <span>Bananas</span>
    <input type="checkbox" name="fruit[]" value="bananas">
  </label>
  
  <label>
    <span>Apples</span>
    <input type="checkbox" name="fruit[]" value="apples">
  </label>
  
  <label>
    <span>Grapes</span>
    <input type="checkbox" name="fruit[]" value="grapes">
  </label>
  
  <button type="submit">Submit</button>
</form>
Posted by: Guest on April-08-2020
0

html js make dropdown list checkbox

<body>
  
    <div id="list1" class="dropdown-check-list" tabindex="100">
        <span class="anchor">Select Fruits</span>
        <ul class="items">
            <li><input type="checkbox" />Apple </li>
            <li><input type="checkbox" />Berry </li>
            <li><input type="checkbox" />Mango </li>
            <li><input type="checkbox" />Banana </li>
        </ul>
    </div>

    <script type="text/javascript">
      
        var checkList = document.getElementById('list1');
        checkList.getElementsByClassName('anchor')[0].onclick = function (evt) {
            if (checkList.classList.contains('visible'))
                checkList.classList.remove('visible');
            else
                checkList.classList.add('visible');
        }

        checkList.onblur = function(evt) {
            checkList.classList.remove('visible');
        }
    </script>
</body>
Posted by: Guest on June-04-2020
1

commande checkbox html

<!doctype html>
<html>
  <body>
    
    <input type="checkbox">
    <input type="radio">
    
  </body>
</html>
Posted by: Guest on June-15-2020

Code answers related to "html checkbox dropdown"

Browse Popular Code Answers by Language