:checkbox Selector in jQuery

It helps to select all elements of type checkbox.

:checkbox Selector

// To add background color on checkboxes. (Firefox does not support background)

$(document).ready(function(){
    $(“:checkbox”).wrap(“<span style=’background-color:yellow’ />”);
})