Enable Button - Jquery

How to enable button using jquery

Snippet Code


  
Rate this page :
  [ 0 votes]

Here the attribute "disable" is removed to enable the button.

$(document).ready(function(){ $('#continue').removeAttr("disabled");//To enable the disabled button. }); <input id="continue" type="button" value="Click" id='continue' disabled="disabled"/>

Tags


Ask Questions

Ask Question