Yep. A string is a string ...
Code:
onChange="if (this.value) {
top.location.href=profile.php?member_id=this.value;
}"
should be
Code:
onChange="if (this.value) {
top.location.href='profile.php?member_id='+this.value;
}"
Note the string delineators, the ' characters around the 'non-JSvariable' parts.
Go nuts! (And check out javascriptkit.com for some fundamentals.)
