I am building a mobile web app with jQuery Mobile and I want to check if a checkbox is checked. Here is my code.
You can try this:
if ($(#remember).is(':checked')){ alert('checked'); }else{ alert('not checked') }