Color Picker In HTML And JavaScript - CopyAssignment

PHOTO EMBED

Sun Apr 09 2023 09:53:43 GMT+0000 (Coordinated Universal Time)

Saved by @SapphireElite

function selectColor() {
        var selectedColor = document.getElementById("colorPicker").value;
        document.querySelector(".column").style.backgroundColor = selectedColor;

        document.getElementById("hexCode").value = selectedColor;
      }
      document
        .getElementById("colorPicker")
        .addEventListener("input", selectColor);
content_copyCOPY

https://copyassignment.com/color-picker-in-html-and-javascript/