02.
<script type=
"text/javascript"
>
03.
$(document).ready(
function
() {
04.
$(
"#delayedBtn"
).attr(
'disabled'
,true);
05.
setTimeout(
function
(){
06.
$(
"#delayedBtn"
).attr({disabled:false,value:
'Enabled Button'
});
07.
}, 5000);
08.
});
09.
</script>
10.
11.
<input type=
'button'
id=
'delayedBtn'
value=
'Disabled Button'
/>