Results 1 to 2 of 2

Thread: Help with Date Change inside .ssi

  1. #1
    Join Date
    Feb 2008
    Location
    Argentina
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Help with Date Change inside .ssi

    Hi there!

    I need help, im using a .ssi wich uses the Legal of a webpage.

    ...<p class="small">IBM Venezuela. Edf. IBM, Avenida Ernesto Blohm, Chuao, Caracas, Venezuela.</p>

    <p class="small">Todos los derechos reservados. Copyright IBM Corporation, 2006.</p>...

    Basicly, i need a script that shows the current year... Client Side.
    Is there anyway?

    Thanks!
    Last edited by dpsource; 02-27-2008 at 02:24 PM.

  2. #2
    Join Date
    Feb 2008
    Location
    Argentina
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Well... just fixed, i think theres nothing more simply...

    If anyone cares... heres how i did it.

    <p class="small">Todos los derechos reservados. Copyright IBM Corporation,
    <script type="text/javascript">
    <!--
    var currentTime = new Date()
    var year = currentTime.getFullYear()
    document.write(year)
    //-->
    </script>.</p>

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •