yo(selector).show()
yo(selector).show()
Show the element. If it is visible does nothing.
// Show the element
yo('.myclass').show();
yo(selector).show(callback)
The callback function will fired once only after the "show" action is ended.
yo('.myclass').show(function () {
// do something
})
Go to index