How to lazy load images, videos and iframes with JavaScript
Lazy load is a great way how to improve a website’s performance. There are few ways how you can achieve that.
Frontend Dev Blog
Lazy load is a great way how to improve a website’s performance. There are few ways how you can achieve that.
The accordion is a UI paradigm that consists of several stacked blocks. Each block consists of a label and a content section, clicking on a label either expands or collapses the section.
JavaScript API allows developers to add (append) an element to the DOM in several different ways. I’ll explain each one of them in detail.
JavaScript provides a native way to create new elements. A single createElement()
method is available inside the document object which is supported by all browsers. But it’s not enough to create a new element with a class name or any other attributes for that matter.
Knowing how to use Git is a must-have skill for any kind of developer these days. Git is a version control system for tracking file changes.