I hover on anchor tag which is contain some block and in block i have icheckbox which is initialize but not working like i can't check checkbox.
$('.categories-block input').iCheck({
checkboxClass: 'icheckbox_square-blue',
radioClass: 'iradio_minimal, iradio_square-blue',
increaseArea: '20%'
});
And this is on hover code
<a class="download-hover clearfix">
<ul>
<li class="first">
<div class="categories-block">
<input tabindex="5" type="checkbox">
</div>
</li>
</ul>
</a>
I think there were css not apply and we can't show icheckbox, in this case we have to use onclick
jquery event and initialize the icheckbox.