skip to Main Content

Hide elements with jquery

I would like to hide individual element blocks that are identified by id`s. I have used a jquery function to do this. <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name=”apple-mobile-web-app-capable” content=”yes “> <script type="text/javascript" src="http://code.jquery.com/jquery-3.7.1.min.js"></script> <script> function changeMenu(menu){ $('#Slide_home').css({'display':'none'}); $('#Slide_sub01').css({'display':'none'});…

VIEW QUESTION
Back To Top
Search