Hi,
I am trying to bulk disable all the submit buttons present in my form. I am getting all the buttons using the following jQuery
jQuery('input')
This returns me an array of the Input tags. I can iterate through this and disable each and every one of them. But is there a better way to perform this operation. Something like,
jQuery('input').disable()