## yo(selector).hide()

Hide the element. If it is not visible does nothing. 

```javascript
// Show the element
yo('.myclass').hide();
```

## yo(selector).hide(callback)

The callback function will fired **once** only after the "hide" action is ended.

```javascript
yo('.myclass'.hide(function () {
    // do something
}))
```

Go to [index](index.md)