klk3644
05-20-2009, 08:33 PM
Below is a copy of the javascript I am using to get the last modified date of a file named "lastupdated.txt". The script is currently showing me Day, Month, Date, Year, Hour, Minutes, Seconds and AM/PM (Example: Wednesday, May 20, 2009 1:38:23 PM) and works perfectly. I would like to tweak the output a little and I like everything about it except I would like to eliminate the seconds in the time. Does anyone have a suggestion?
<script type="text/javascript">
function getLastMod(){
var myFrm = document.getElementById('myIframe');
var lastModif = new Date(myFrm.contentWindow.document.lastModified);
document.getElementById('LastModified').innerHTML = "Updated: " + lastModif.toLocaleString();
}
</script>
I appreciate the help.
<script type="text/javascript">
function getLastMod(){
var myFrm = document.getElementById('myIframe');
var lastModif = new Date(myFrm.contentWindow.document.lastModified);
document.getElementById('LastModified').innerHTML = "Updated: " + lastModif.toLocaleString();
}
</script>
I appreciate the help.