CSS is being used to hide three items on the index.html page (two <li> elements and a <div> element). Use jQuery's :hidden pseudo selector and the show() method to display the hidden <li> elements, while leaving the <div> element hidden. code example
Example: CSS is being used to hide three items on the index.html page (two elements and a element). Use jQuery's :hidden pseudo selector and the show() method to display the hidden elements, while leaving the element hidden.
typescript by Tired Trout
on Dec 02 2020 Donate
$("li:hidden").show();