Run ❯
Get your
own
website
Result Size:
625 x 565
×
Change Orientation
Save Code
Change Theme, Dark/Light
Go to Spaces
<!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><b>Note:</b> type="color" is not supported in Internet Explorer 11 and earlier versions or Safari 9.1 and earlier versions.</p> <script> function myFunction() { document.getElementById("myColor").disabled = true; } </script> </body> </html>