bootstrap-switch
bootstrap-switch copied to clipboard
bootstrap glyphicon
Hi, do you support bootstrap glyphicon?
I'm trying this:
$("[name='pets_check_box']").bootstrapSwitch('onText', '<span class="glyphicon glyphicon-ok"></span>');
$("[name='pets_check_box']").bootstrapSwitch('offText', '<span class="glyphicon glyphicon-remove"></span>');
and the glyphicon is not displayed... if i use Fontawesome icons it works fine.
$("[name='pets_check_box']").bootstrapSwitch('onText', '<i class="fa fa-check" aria-hidden="true"></i>');
$("[name='pets_check_box']").bootstrapSwitch('offText', '<i class="fa fa-times" aria-hidden="true"></i>');
Is your site using glyphicons anywhere else in the page ? (problem may be calling the glyphicon stylesheet)
It was using. In the end i used something else. Don't mind if you close this issue.