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

https://github.com/alaca/loadcss

Load CSS asynchronously
https://github.com/alaca/loadcss

async asynchronous css javascript style stylesheets

Last synced: about 1 month ago
JSON representation

Load CSS asynchronously

Awesome Lists containing this project

README

          

# loadCSS
Load CSS asynchronously

### Usage
```

```

### Manual CSS loading
```javascript

loadCSS('mystyle.css', 'all');

```

### Using onload event
```javascript

loadCSS('mystyle.css', 'all', function(link){
console.log(link.href);
});

```