Changing attributes values
I am using:
jquery 2.0.0
jquery mobile 1.3.1
I am attempting to change attribute values with a button for instance:
<button id="click" disabled="true">Click</button>
Using jquery:
$('#click').attr('disabled', 'false')
$('#click').prop('disabled', 'false')
I have attempted the above with no success. It seems that this sort of thing was not an issue with earlier versions of JQM (as I have done research on this issue this evening).
Any help would be appreciated. Thanks