
11-05-2006, 04:29 PM
|
Registered User
|
Join Date: Oct 2003
Posts: 2,712
|
|
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" |
|
|