JavaScript Variable Declarations In wick.js
Status: Alpha
Brought to you by:
valmont
Can variables please be declared using "var". I've just
spent an hour tracking down a problem caused because
my page has a div assigned an ID of "content". WICK
was blowing up in IE 6.0 on line 218:
content = getSmartInputBoxContent();
Changing this to:
var content = getSmartInputBoxContent();
...fixed the problem.
Logged In: NO
I ran into this problem as well with WinXp running IE 6.0.
using the var declaration solved the issue. Thanks!
Travster12@hotmail.com
Logged In: YES
user_id=248425
o yikes good point. sorry about that.
Confirming this bug; spent way more than an hour trackign this down :)