I am currently using Jquery to alter a 3rd party product and ran across this particular limitation...I think
Currently the checkbox ID and Name value have a ; in it see below
<input id="K48_h6;547ECE8D417501D623E11F94E0DF94FD" name="K48_1" value="h6;547ECE8D417501D623E11F94E0DF94FD" type="checkbox" style="cursor: pointer;">
I am trying to force Jquery to Check this box. This is the Jquery I have right now.
$("#K48_h6;547ECE8D417501D623E11F94E0DF94FD").prop("checked",true);
This is causing me to have a Object doesn't support this property or method.
Since this is a 3rd party product there is nothing I can do with the ;, The Jquery run post the server side code loading.