Thread: Time Problem
View Single Post
  #11  
Old 11-05-2006, 04:29 PM
Gambet Gambet is offline
Registered User
Join Date: Oct 2003
Posts: 2,712
Gambet is on a distinguished road
What?

Why are you putting quotes around the this. variables? You do realize that you're setting the value of all of that to "this.hour" and not the VALUE of it? You don't put quotes when setting the value of one variable to another.

this.blah = this.test <---Correct

this.blah = "this.text" <---Incorrect, unless you want this.blah to actually equal the words "this.text"
Reply With Quote