Saturday 27 October 2018

get current state of check box jquery

I am using Bootstrap iCheck plugin. How can i find out Whether a check box is checked or not by pressing a button using jquery




$(button).click(function(){

ckb = $("#ickb").(isChecked);
});

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...