min-ready

2.3.0 • Public • Published

min-ready

Build status NPM version Downloads Dependency Status

Simple ready like jQuery(func)

Installation

npm i min-ready

Usage

var ready = require('min-ready')()
 
ready.queue(function() {
    console.log(1)
})
ready.queue(function() {
    console.log(2)
})
ready.open()
// => 1, 2
ready.queue(function() {
    console.log(3)
})
// => 3

Simple Delay Execute

// before jquery load
var ready = require('min-ready')()
 
ready.queue(function() {
    var $ = this
    $('.class').html('some thing')
})
 
ready.queue('ajax', 'http://foo.bar.com', {success: function() {}})
// after jquery load
ready.ctx = $ // set context
ready.open()

License

License

Readme

Keywords

none

Package Sidebar

Install

npm i min-ready

Weekly Downloads

228

Version

2.3.0

License

ISC

Last publish

Collaborators

  • ftft1885