Hi there i'm trying to get the input value of a date input in Javascript/Jquery so i can put it in an innerHTML.
I have the following code;
$("#input").change(function()
{
document.getElementById('output').innerHTML = document.getElementById("input").value ;
});
Where as 'input' is the ID of the date select. And output is the ID of the in which i want the selected date to be visible.
It works with text field inputs but it doesn't work with the date select. Does anybody know a solution, preferably in JQuery. Thanks