I used all the events from JavaScript to get the color code while drag on color panel. All methods are working fine for certain mouse events. Can anyone guide me to get the color on drag?
function fillElements(ev) {
color = ev.target.value
console.log(color);
}
<input onchange="fillElements(event)" type="color" value="#3367d6">