IF you want to do it this way, you have to do it with the .on function: reason, you will not have the function (event management with clicks) correctly attached to classes that are not currently running, you have it.
$(document).on('click','.unCheckedCheckBox',function () {...rest of your function
NOTE. If possible, put the binding in the nearest shell, for example, give the shell and table ID and do:
$('#mytableid').on('click','.unCheckedCheckBox',function () {
JQuery 1.9.1 example: http://jsfiddle.net/nscZA/6/
NOTE. Do not use sprites (do not load), but use colors
EDIT: senior delegate with table id:
<table id='mytablewrapper'>
Syntax
slightly different:
$('#mytablewrapper').delegate(".CheckedCheckBox", 'click', function () {
delegate example: http://jsfiddle.net/nscZA/7/
NOTE. Do not use sprites (do not load), but use colors
source share