Select Page

Tag: JavaScript

Side Navigation

Side Navigation

Here is the tutorial for creating side navigation using HTML, CSS, and JavaScript. Link – https://www.w3schools.com/howto/howto_js_sidenav.asp
How to make a div act like an anchor tag

How to make a div act like an anchor tag

Div Anchors Using onclick inline javascript to a location can make a div act like an anchor. <div onclick=”location.href=’url'”>content</div> jQuery: $(“div”).click(function(){...