Hi Rick,
$(form).find("[EMAIL PROTECTED]").attr("disabled","disabled");
This should work just fine (although you are missing an ending ] ). As a slightly shorter notation you can do: $("input:submit",form).attr("disabled","disabled");
$(form).find("[EMAIL PROTECTED]").attr("disabled", "");
This should also work to enable the element, but the best test is trial and error. ~Sean