Benjamin Sterling wrote:
Adrian:Try $('#myButton').removeAttr('disabled');but... I believe IE6 has an issue with the disabled being dynamically appended, so you may need todo:$('#myButton').disabled = true; $('#myButton').disabled = false;
That will throw an error. Do not mix jQuery and DOM properties. Try: $('#myButton').attr('disabled', true); $('#myButton').attr('disabled', false); --Klaus