I want to prevent multiple form submissions using angular.js. The question is related to this question.
When the user clicks on a form submit button the value / labe
Try a $timeout (the angularjs function)
$timeout(function(){ elm.attr('disabled',true); }, 0)