When using hide and show functions, I noticed that elements that weren't visible to the users weren't being hidden by adding the display: none style.
After looking at the JS code, I saw that the corresponding js functions check if the element is visible or not before applying the style. IMO this is not trivial and should be added to the documentation.
When using hide and show functions, I noticed that elements that weren't visible to the users weren't being hidden by adding the
display: none
style.After looking at the JS code, I saw that the corresponding js functions check if the element is visible or not before applying the style. IMO this is not trivial and should be added to the documentation.