Line 3: | Line 3: | ||
<html> | <html> | ||
<head> | <head> | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
<style> | <style> | ||
Line 53: | Line 38: | ||
</div> | </div> | ||
+ | <script type="text/javascript" language="JavaScript"> | ||
+ | function checkBox(id){ | ||
+ | var list = document.getElementById(id); | ||
+ | |||
+ | if (list.className == "fas fa-check-square"){ | ||
+ | list.className = "far fa-square"; | ||
+ | } | ||
+ | else{ | ||
+ | list.className = "fas fa-check-square"; | ||
+ | } | ||
+ | |||
+ | } | ||
+ | |||
+ | </script> | ||
</div> | </div> | ||
</body> | </body> |
Revision as of 18:31, 15 October 2018