Viewing Insert Date & Time that automatically adjusts as EverWeb opens

Insert Date & Time that automatically adjusts as EverWeb opens



User: Cornelis V. 12 years ago
Sorry made a mistake > see newer one above

Last edit 12 years ago
User: Paul-RAGESW 12 years ago
Hi,

We are working towards adding this feature.

Note: I deleted your second post.

-------------------------------
Paul
EverWeb Developer
User: Jumbo T. 12 years ago
Why wait when you can have it right now :

<script type="text/javascript">

LastTimeEdited = new Date(document.lastModified);

theDay = LastTimeEdited.getDate();
theMonth = LastTimeEdited.getMonth() +1;
theYear = LastTimeEdited.getFullYear();

document.write('Last edited : ' + theDay + "/" + theMonth + "/" + theYear);

</script>


http://www.google.com/search?q=javascript+change+date+file
http://www.w3schools.com/jsref/jsref_obj_date.asp

Last edit 12 years ago


Post Reply
You must login or signup to post.