Select Page

Tag: JavaScript

Pointer and Touch Event Listeners – JavaScript

Pointer and Touch Event Listeners – JavaScript

The following script can be used for web app supporting pointer events and touch events. Pointer events are DOM events that are fired for a pointing device. They are designed to create a single DOM event model to handle pointing input devices such as a mouse,...
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(){...