Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. <ul class="sortable-list taskList list-unstyled ui-sortable">
  2. <li class="ui-sortable-handle">
  3. <div class="checkbox checkbox-custom checkbox-single pull-right">
  4. <input id="checkbox1" type="checkbox" aria-label="Single checkbox Two" class="cbx">
  5. <label>Normal</label>
  6. </div>
  7. No.1
  8. </li>
  9. <li class="ui-sortable-handle">
  10. <div class="checkbox checkbox-custom checkbox-single pull-right">
  11. <input id="checkbox1" type="checkbox" aria-label="Single checkbox Two" class="cbx">
  12. <label>Normal</label>
  13. </div>
  14. No.2
  15. </li>
  16. <li class="ui-sortable-handle">
  17. <div class="checkbox checkbox-custom checkbox-single pull-right">
  18. <input id="checkbox1" type="checkbox" aria-label="Single checkbox Two" class="cbx">
  19. <label>Normal</label>
  20. </div>
  21. No.3
  22. </li>
  23. </ul>
  24.  
  25. <script>
  26. $('input.cbx').on('change', function () {
  27. if ($(this).is(":checked")) {
  28. $('.ui-sortable li').addClass("task-warning");
  29. } else {
  30. $('.ui-sortable li').removeClass("task-warning");
  31. }
  32. });
  33. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement