I am using jQuery Uniform to style inputs/selects etcs. However, the checkbox has stopped working. I am appending
data sent from an ajax call. Once it\'s loaded
This is because UniformJs requires that you update your modification on uniform elements if you need to change values on the form dynamically:
$('#checkbox').prop('checked',true);
$.uniform.update();
If you wish to update the #checkbox
only:
$('#checkbox').prop('checked',true);
$.uniform.update('#checkbox');