The function presented in this page can be used
to disable and automatically enable buttons in web page, with JavaScript. After the user clicks on the button, that button is disabled, and its text is changed, then, after 2 seconds, the button is automatically enabled.
- This function receives an Array with the ID of the buttons to which you want to add this effect.
Code of the function:
// function to disable and enable buttons, receives an array with button IDs
// from: https://coursesweb.net/javascript
function disableEnableBtn(ids){
// traverses the array with IDs
var nrids = ids.length;
for(var i=0; i<nrids; i++){
// registers onclick event to each button
if(document.getElementById(ids[i])) {
document.getElementById(ids[i]).onclick = function() {
this.setAttribute('disabled', 'disabled'); // disables the button by adding the disabled attribute
this.innerHTML = 'Disabled'; // changes the button text
var idbtn = this.id; // stores the button ID
// calls a function after 2 sec. (2000 milliseconds)
setTimeout(()=>{
document.getElementById(idbtn).removeAttribute('disabled'); // removes the disabled attribute
document.getElementById(idbtn).innerHTML = 'Click'; // changes tne button text
}, 2000 );
}
}
}
}
- Set an array with IDs of the buttons (one or more IDs), then call the
disableEnableBtn()
function, passing the array as argument. To change the time after which the button is enabled, modify the value of 2000 added in
setTimeout()
; see also the comments in code.
- Example with two buttons.
<h4>Example automatically Disable and Enable button</h4>
<p>Click on each button and wait 2 seconds.</p>
<button id='btn1'>Click</button> - <button id='btn2'>Click 2</button>
<script>
// function to disable and enable buttons, receives an array with button IDs
// from https://coursesweb.net/javascript
function disableEnableBtn(ids){
// traverses the array with IDs
var nrids = ids.length;
for(var i=0; i<nrids; i++){
// registers onclick event to each button
if(document.getElementById(ids[i])) {
document.getElementById(ids[i]).onclick = function() {
this.setAttribute('disabled', 'disabled'); // disables the button by adding the disabled attribute
this.innerHTML = 'Disabled'; // changes the button text
var idbtn = this.id; // stores the button ID
// calls a function after 2 sec. (2000 milliseconds)
setTimeout(()=>{
document.getElementById(idbtn).removeAttribute('disabled'); // removes the disabled attribute
document.getElementById(idbtn).innerHTML = 'Click'; // changes tne button text
}, 2000 );
}
}
}
}
// array with IDs of buttons
var btnid = ['btn1', 'btn2'];
disableEnableBtn(btnid); // calls the function
</script>
Daily Test with Code Example
HTML
CSS
JavaScript
PHP-MySQL
Which HTML5 tag can be used to embed an external application (SWF, PDF) in web page?
<mark> <embed> <canvas><embed src="flash_game.swf" width="450" height="350" />
Which CSS pseudo-element adds a special style to the first line of a text?
:first-letter :before :first-line#id:first-line {
font-weight: bold;
color: blue;
}
Click on the window object property which gets or sets the URL of current page.
window.location window.self window.statusvar url = window.location;
alert(url);
Indicate the PHP function used to get the contents of a file or page and store it into a string.
fopen() file_put_contents() file_get_contents()$homepage = file_get_contents("http://coursesweb.net/");
echo $homepage;