I want to print the value of the date by passing it from the JavaScript file to the HTML file.
HTML file:
<html>
<body>
<script src=background.js> </script>
<span id="showDate"> </span>
</body>
</html>
JavaScript file:
document.body.style.background = "url('1.jpg')";
var today = new Date();
var dd = today.getDate();
var mm = today.getMonth()+1; //January is 0!
var yyyy = today.getFullYear();
if(dd<10) {
dd='0'+dd
}
if(mm<10) {
mm='0'+mm
}
today = dd+'/'+mm+'/'+yyyy;
alert(today);
document.getElementById("showDate").value=today;