• Today I am going to demonstrate here, how can we hide or show div with pure JavaScript?. Here is step by step procedure: 1) CREATE A HTML FILE FOR BROWSER VIEW AND SAVE IT AS INDEX.HTML   <!doctype html> <html>  <head>   <title>Show and hide div with JavaScript</title>   <script src=”show.js”></script>  </head>  <body> <div id=”newpost”> This div […]

    Read More