<!DOCTYPE html>
<html>
<body>

A date control: <input type="date" id="myDate">

<p>Click the button to return which type of form element the date field is.</p>

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

<p><strong>Note:</strong> input elements with type="date" do not show as any date field/calendar in Firefox.</p>

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

<script>
function myFunction() {
    var x = document.getElementById("myDate").type;
    document.getElementById("demo").innerHTML = x;
}
</script>

</body>
</html>