i using plugin customize radio , checkboxes icheck tried search here in seems solutions not working me. posted here help, hope can me working.
here code have right now
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title></title> <link rel="stylesheet" href="http://fronteed.com/icheck/skins/futurico/futurico.css"> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> <script type="text/javascript" src="http://fronteed.com/icheck/icheck.js?v=1.0.1"></script> <script> $(document).ready(function(){ $('input').icheck({ checkboxclass: 'icheckbox_polaris', radioclass: 'iradio_polaris', increasearea: '-10%' // optional }); }); </script> </head> <body> <input type="checkbox"> <input type="checkbox" checked> <input type="radio" name="icheck"> <input type="radio" name="icheck"> </body> </html> thank in advance.
class name provided wrong theme css have included. classes theme icheckbox_futurico , iradio_futurico.
$('input').icheck({ checkboxclass: 'icheckbox_futurico', radioclass: 'iradio_futurico', increasearea: '-10%' }); <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> <script src="http://fronteed.com/icheck/icheck.js"></script> <link href="http://fronteed.com/icheck/skins/futurico/futurico.css" rel="stylesheet" /> <div> <input type="checkbox"> <input type="checkbox" checked> <input type="radio" name="icheck"> <input type="radio" name="icheck"> </div>
Comments
Post a Comment