Horje
how to disable onclick event in javascript Code Example
how to disable onclick event in javascript
$("#id").on('click', function(){ //enables click event
    //do your thing here
});

$("#id").off('click'); //disables click event

// If you want to disable a div, use the following code:
$("#id").attr('disabled','disabled');




Javascript

Related
rror: btoa is not defined Code Example rror: btoa is not defined Code Example
checkbox set checked jquery Code Example checkbox set checked jquery Code Example
nuxt progress false Code Example nuxt progress false Code Example
node alternative to btoa Code Example node alternative to btoa Code Example
how to get seconds in timstamps js Code Example how to get seconds in timstamps js Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
6