Input Color value Property - shows the difference between the defaultValue and value property: - Javascript DOM HTML Element

Javascript examples for DOM HTML Element:Input Color

Description

Input Color value Property - shows the difference between the defaultValue and value property:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

Color picker: <input type="color" id="myColor" value="#ff0080">

<button type="button" onclick="myFunction()">Test</button>

<p id="demo"></p>

<script>
function myFunction() {// w ww . java  2s  . co m
    var x = document.getElementById("myColor");
    var defaultVal = x.defaultValue;
    var currentVal = x.value;

    if (defaultVal == currentVal) {
        document.getElementById("demo").innerHTML = "Default value and current value is the same: " + x.defaultValue + " and " + x.value;
    } else {
        document.getElementById("demo").innerHTML = "The default value was: " + defaultVal + "<br>The new, current value is: " + currentVal;
    }
}
</script>
</body>
</html>

Related Tutorials