So I have the following fiddle: http://jsfiddle.net/bmgh1985/XcScd/
What I need this to do is when I input the date, it goes through this bit of jQuery:
$('#headline').keyup(function () {
$('#headlinedisp').text($('#headline').val());
});
$('#timestamp').change(function () {
$('#timestampdisp').text($('#timestamp').val());
});
$('#news').keyup(function () {
$('#newsdisp').text($('#news').val());
});
and then displays a preview underneath. That was all well and good before I started using the "date" type. Now, when I input something like 23/03/2013, it displays in the form 2013-03-23. That to me is great for when I stick it into my SQL table, but wanting to display it as written in the box in the display in real time by modifying that jQuery slightly.
Also, I will have some backwards people insisting on using IE6,7,8 on this, so they will see a standard text box, which they will input 23/03/2013 into and it will display that as output correctly. I don't want it messing that up either (so basically, if its text then leave it. If its in the date type, alter the output on .change to be the correct formatting).