New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

lazy-fragment-element

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lazy-fragment-element

Lazily load parts of a webpage as soon as they appear in the screen.

1.0.2
latest
Source
npm
Version published
Weekly downloads
7
133.33%
Maintainers
1
Weekly downloads
 
Created
Source

<lazy-fragment> element

Lazily load parts of a webpage as soon as they appear in the screen.

npm npm bundle size

Installation

CDN

Include the following <script> tag in the <head> of your document:

<script src="https://unpkg.com/lazy-fragment-element"></script>

NPM

You can also install using a package manager.

npm install lazy-fragment-element
// Or
yarn add lazy-fragment-element

And then import as a module:

import 'lazy-fragment-element'

Markup

<lazy-fragment src="/lazy-part-from-server">Loading...</lazy-fragment>

The element will be entirely replaced by the HTML fragment returned by the server as soon it appears on the screen (scrolling or showing with the css property display in a parent element).

You can also defer the loading by using the disabled attribute and removing it later.

Browser support

Browsers without native custom element support require a polyfill.

  • Chrome
  • Firefox
  • Safari
  • Microsoft Edge

FAQs

Package last updated on 15 Apr 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts