How to check if jMobile is checked with js?
<input class="custom" id="myCheckbox" name="myCheckbox" type="checkbox"/>
In short:
$("#myCheckbox").is(":checked")
If it is installed, you can use
if( $("#myCheckbox").is(':checked'));
And if it is NOT installed, you can use
if( $("#myCheckbox").not(':checked'));