An open API service indexing awesome lists of open source software.

https://github.com/dimchtz/jquery.lazy

A tiny JQuery plugin to enable image lazy loading.
https://github.com/dimchtz/jquery.lazy

Last synced: 10 months ago
JSON representation

A tiny JQuery plugin to enable image lazy loading.

Awesome Lists containing this project

README

          

# jquery.lazy
A tiny JQuery plugin to enable image lazy loading.

# How to use jquery.lazy

## Step 1: Include jquery.lazy.js after jquery
```html


```

## Step 2: Your image elements should be like this:
```html




```

## Step 3 ( Alternative ): If your images don't have the lazy attribute but a class or an id:

```html




```

```javascript
$('img.some-random-class').lazy();
```