Checkbox in Semantic UI

checkbox, semantic-ui

Solution

I've solved this problem to write jQuery's code like this:

$(document).ready(
        function () {
            $('.ui.checkbox')
                    .checkbox()
                    ;
        });

Problem

I'm trying to do checkbox in Semantic UI, but it doesn't work and I can't figure out what I'm doing wrong. I'm including jquery, semantic.min.js, checkbox.js and semantic.min.css, then I add this code: ``` $('.ui.checkbox') .checkbox() ; ``` There is console output, but image of checkbox doesn't change.

Original source