Edit This Code:
<!DOCTYPE html>
<html>
<body>

<input type="color" id="myColor">

<p>Click the "Try it" button to disable the color picker above.</p>

<button onclick="myFunction()">Try it</button>

<p><strong>Note:</strong> input elements with type="color" do not show any colorpicker in Internet Explorer and Safari.</p>

<script>
function myFunction() {
    document.getElementById("myColor").disabled = true;
}
</script>
</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy