Changing Styles for a Class
OK this was a tricky one because Javascript has no hooks on the class of elements. You can ‘getElementById’ but not ‘getElementByClass’ so …. I wanted to change the Javascript enabled parts of my form from hidden to unhidden. They all had class=”hidden” or class=”*** *** hidden”. The solution: search by tag and match the [...]