Line 210: | Line 210: | ||
--> | --> | ||
*/ | */ | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
</script> | </script> | ||
Line 470: | Line 460: | ||
</style> | </style> | ||
+ | <script> | ||
+ | function toggleDiv() { | ||
+ | var x = document.getElementById('myDIV'); | ||
+ | if (x.style.display === 'none') { | ||
+ | x.style.display = 'block'; | ||
+ | } else { | ||
+ | x.style.display = 'none'; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | </script> | ||
<!--- THIS IS WHERE THE HTML BEGINS ---> | <!--- THIS IS WHERE THE HTML BEGINS ---> |
Revision as of 15:38, 15 August 2017