Files
DefinitelyTyped/icheck/icheck-tests.ts
2013-06-24 19:20:59 +01:00

34 lines
792 B
TypeScript

///<reference path="icheck.d.ts" />
///<reference path="../jquery/jquery.d.ts" />
$('input').iCheck({
labelHover: false,
cursor: true
});
// customize all inputs (will search for checkboxes and radio buttons)
$('input').iCheck();
// handle inputs only inside $('.block')
$('.block input').iCheck();
// handle only checkboxes inside $('.test')
$('.test input').iCheck({
handle: 'checkbox'
});
// handle .vote class elements (will search inside the element, if it's not an input)
$('.vote').iCheck();
// you can also change options after inputs are customized
$('input.some').iCheck({
// different options
});
$('input').on('ifChecked', function (event) {
alert(event.type + ' callback');
});
$('input').iCheck('check', function () {
alert('Well done, Sir');
});