ontab
auto complete logic
usage
var ot = new OnTab( function( value ) {
console.log( value );
} );
ot.context = [ 'apple', 'hello', 'ass' ];
ot.autoComplete( 'a' );
ot.autoComplete( 'a' );
printout:
apple
ass
auto complete logic
var ot = new OnTab( function( value ) {
console.log( value );
} );
ot.context = [ 'apple', 'hello', 'ass' ];
ot.autoComplete( 'a' );
ot.autoComplete( 'a' );
printout:
apple
ass
npm i ontab
1
0.0.0
GNU