## .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();
```
