Disable Buttons in jQuery Mobile
UPDATE: Since this question still gets a lot of hits I’m also adding the current jQM Docs on how to disable the button: http://jquerymobile.com/demos/1.2.0/docs/buttons/buttons-methods.html Updated Examples: enable enable a disabled form button $(‘[type=”submit”]’).button(‘enable’); disable disable a form button $(‘[type=”submit”]’).button(‘disable’); refresh update the form button If you manipulate a form button via JavaScript, you must call … Read more