Line 84: | Line 84: | ||
}); | }); | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
</script> | </script> | ||
Line 566: | Line 557: | ||
</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:16, 1 August 2017