Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Tumbledry

    trig function calculator?

    Hello, One of my projects in class today was to make a calculator. I did the basic parts, but I didnt get the trig functions on it. What are the SIN COS and TAN javascript codes?
  2. Tumbledry

    Creating a clock

    ok thank you.
  3. Tumbledry

    Creating a clock

    ok, the clock displays the weekday, the month, year and the time. my code displays the time in a text box. I need help with the weekday month and year. here is my code <html> <head> <script language="javascript"> <!-- function runClock() { var timeNow = new Date(); var hours =...
  4. Tumbledry

    Creating a clock

    yea I get the clock part, want the Month updates (seconds < 10) ? seconds = "0" + seconds : seconds; (minutes < 10) ? minutes = "0" + seconds : minutes; (hours < 12) ? ampm = "AM" : ampm = "PM"; (hours > 12) ? hours = hours - 12 : hours; (hours == 0) ? hours = 12 : hours; thats my clock. Do I...
  5. Tumbledry

    Creating a clock

    Hi, I need to create a clock using this format: "Friday March 13 2006 3:45pm" I dont know were to start! please help!

Part and Inventory Search

Back
Top