Script/java help please take a look

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Va2k
    I’m still alive barley.
    • Oct 2001
    • 10060

    #1

    Script/java help please take a look

    Hey folks what I am looking for is a little script that will show say todays date like Last Update: 10-12-2012 only! Not like, Last Update: Fri Oct 12 14:26:13 2012.

    this is what I was using
    Code:
    <script>document.write(Date()+".")</script>

    any smart peeps ready to help lol Thanks
  • Barry-xlovecam
    It's 42
    • Jun 2010
    • 18083

    #2
    https://www.google.com/search?client...utf-8&oe=utf-8 maybe find it here?

    Comment

    • Django
      So Fucking Banned
      • Jul 2010
      • 2578

      #3
      just a couple of lines

      Comment

      • Django
        So Fucking Banned
        • Jul 2010
        • 2578

        #4
        a couple of lines

        Comment

        • Va2k
          I’m still alive barley.
          • Oct 2001
          • 10060

          #5
          Originally posted by Barry-xlovecam
          Thanks ive been looking there first but can only find date+time everything I've tried fails

          Comment

          • Va2k
            I’m still alive barley.
            • Oct 2001
            • 10060

            #6
            Originally posted by Django
            just a couple of lines
            couple lines what?

            Comment

            • Colmike9
              (>^_^)b
              • Dec 2011
              • 7230

              #7
              <script type="text/javascript">
              var date = new Date();
              var day = date.getDate();
              var month = date.getMonth() + 1;
              var year = date.getFullYear();
              document.write("<b>Last Updated :</b> "+day + "-" + month + "-" + year);
              </script>

              Join the BEST cam affiliate program on the internet!
              I've referred over $1.7mil in spending this past year, you should join in.
              I make a lot more money in the medical field in a lab now, fuck you guys. Don't ask me to come back, but do join Chaturbate in my sig, it still makes bank without me touching shit for years..

              Comment

              • Va2k
                I’m still alive barley.
                • Oct 2001
                • 10060

                #8
                Originally posted by Colmike7
                <script type="text/javascript">
                var date = new Date();
                var day = date.getDate();
                var month = date.getMonth() + 1;
                var year = date.getFullYear();
                document.write("<b>Last Updated :</b> "+day + "-" + month + "-" + year);
                </script>

                Thanks that worked great had to change + month + with day Thank you rthank you thank you
                Last edited by Va2k; 10-12-2012, 10:42 AM.

                Comment

                • Colmike9
                  (>^_^)b
                  • Dec 2011
                  • 7230

                  #9
                  Originally posted by Fungus
                  That almost worked it shows Last Updated : 12-10-2012 looks like Dec 12 2012 anyway to make it 10-12-2012
                  <script type="text/javascript">
                  var date = new Date();
                  var day = date.getDate();
                  var month = date.getMonth() + 1;
                  var year = date.getFullYear();
                  document.write("<b>Last Updated :</b> "+month + "-" + day + "-" + year);
                  </script>

                  Join the BEST cam affiliate program on the internet!
                  I've referred over $1.7mil in spending this past year, you should join in.
                  I make a lot more money in the medical field in a lab now, fuck you guys. Don't ask me to come back, but do join Chaturbate in my sig, it still makes bank without me touching shit for years..

                  Comment

                  • Va2k
                    I’m still alive barley.
                    • Oct 2001
                    • 10060

                    #10
                    um Thread closed lmao Thanks everyone for the help

                    Comment

                    • Vapid - BANNED FOR LIFE
                      Barterer
                      • Aug 2004
                      • 4864

                      #11
                      scourged

                      Comment

                      Working...