styleBunny
Technical User
Hi Guys, i am using this script to update the date at the bottom of my page for copyright. This works find in ie but the new date() function fails in Fire fox. Has anyone seen a way around this?
Cheers
Paul.
<script language="JavaScript">
//script to keep the copyright date current.
copyright=new Date();
update=copyright.getYear();
</script>
<div id="copyright">
<script language="JavaScript">
document.write("copyright © "+ update);
</script>
</div>
Cheers
Paul.
<script language="JavaScript">
//script to keep the copyright date current.
copyright=new Date();
update=copyright.getYear();
</script>
<div id="copyright">
<script language="JavaScript">
document.write("copyright © "+ update);
</script>
</div>