show all hidden elements on page

PHOTO EMBED

Fri Jul 16 2021 16:03:25 GMT+0000 (Coordinated Universal Time)

Saved by @davidpetrey #javascript

$("body *:hidden:not(script, style)").each(function() {
    if ($(this).css("display") == "none") {
        $(this)[0].style.display = "block";
    }
  });
content_copyCOPY