You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
Here is my html which loaded from ajax <div class="input-group"> <div class="icheck-list"> <label> <input type="checkbox" class="icheck" data-checkbox="icheckbox_line-grey" data-label="Checkbox 1"> </label> <label> <input type="checkbox" checked class="icheck" data-checkbox="icheckbox_line-grey" data-label="Checkbox 2"> </label> <label> <input type="checkbox" class="icheck" data-checkbox="icheckbox_line-grey" data-label="Checkbox 3"> </label> </div> </div>
to solve this i found this jQuery(document).on('icheck', function(){ jQuery('input[type=checkbox]').iCheck({ checkboxClass: 'icheckbox_square-blue' }); }).trigger('icheck');
But loading inline checkbox
The text was updated successfully, but these errors were encountered:
Hi,
Here is my html which loaded from ajax
<div class="input-group"> <div class="icheck-list"> <label> <input type="checkbox" class="icheck" data-checkbox="icheckbox_line-grey" data-label="Checkbox 1"> </label> <label> <input type="checkbox" checked class="icheck" data-checkbox="icheckbox_line-grey" data-label="Checkbox 2"> </label> <label> <input type="checkbox" class="icheck" data-checkbox="icheckbox_line-grey" data-label="Checkbox 3"> </label> </div> </div>
to solve this i found this
jQuery(document).on('icheck', function(){ jQuery('input[type=checkbox]').iCheck({ checkboxClass: 'icheckbox_square-blue' }); }).trigger('icheck');
But loading inline checkbox
The text was updated successfully, but these errors were encountered: