Guest User

Untitled

a guest
Apr 23rd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <input type="checkbox" id="type" />
  2. <label for="type" id="disable">Disable check</label>
  3.  
  4. <input type="checkbox" id="type" CHECKED/>
  5. <input type="checkbox" id="type" checked>
  6. <input type="checkbox" id="type" checked="checked"/>
  7. <input type="checkbox" id="type" checked="checked" value="1"/>
  8. <input type="checkbox" id="type" value="true" checked>
  9. <input type="checkbox" id="type" name="tempname" checked="checked"/>
  10. <input type="checkbox" id="type" checked=true/>
  11. At the end of the page: <script type="text/javascript">document.getElementById("type").checked=true;</script>
  12.  
  13. <input type="checkbox" id="type" name="name" checked="checked"/>
Add Comment
Please, Sign In to add comment