istesequi
Version:
Lightweight and intuitive javascript library
27 lines (14 loc) • 292 B
Markdown
## .remove()
Removes the matched elements.
```js
.remove();
```
### Parameters
This method doesn't accept any parameters
### Return
`u`: Returns an instance of Umbrella JS with the removed nodes.
### Examples
Remove all the elements of a list:
```js
u("ul.demo li").remove();
```