0

Just wondering if there was a difference between disabling a submit button and image submit button(input type="image") in Jquery.

Thanks

akano1
  • 40,596
  • 19
  • 54
  • 67

1 Answers1

0

Not really, both would be disabled the same way:

$('#someId').attr('disabled',true);
karim79
  • 339,989
  • 67
  • 413
  • 406