Click to See Complete Forum and Search --> : Jump To?


Cactus Hugger
03-21-2003, 09:16 PM
How can I use JS to jump to a place on a page?

lucas
03-21-2003, 09:39 PM
If (conditional expression) then

lucas
03-21-2003, 09:41 PM
VBScript
If (conditional expression) then
action statement
else
action statements
end if


JavaScript

If (conditional expression) {
action statement;
}
else {
action statements;
}