How to disable an HTML object?
You can disable html object by using this code,
document.getElementById("myObject").disabled = true;
Post Answer
Preview: