Answers for "multiple checkbox in select option"

5

html multiple checkbox list

<form method="post" action="/Tests/Post/">         
  <fieldset>              
    <legend>What is Your Favorite Pet?</legend>             
    <input type="checkbox" name="favorite_pet" value="Cats">Cats<br>             
    <input type="checkbox" name="favorite_pet" value="Dogs">Dogs<br>             
    <input type="checkbox" name="favorite_pet" value="Birds">Birds<br>             
    <br>              
    <input type="submit" value="Submit now" />          
  </fieldset>      
</form>
Posted by: Guest on April-01-2021
-1

html select multiple

$(".chosen-select").chosen({
  no_results_text: "Oops, nothing found!"
})
Posted by: Guest on March-25-2021

Code answers related to "multiple checkbox in select option"

Browse Popular Code Answers by Language