Select Page

Tag: JavaScript

Screenfull.js – bring a page or any element into fullscreen

Screenfull.js – bring a page or any element into fullscreen

Simple wrapper for cross-browser usage of the JavaScript Fullscreen API, which lets you bring the page or any element into fullscreen. Smoothens out the browser implementation differences, so you don’t have too. screenfull.js – bring element to full screen...
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(){...