josieyuen04
New Member
In my html page, there exists a link to sign up and a div which holds the signup form.\[code\]<a href="http://stackoverflow.com/questions/14412157/index.html"><img src="http://stackoverflow.com/questions/14412157/images/logo2.png" alt="LOGO"></a><div> <form method="POST" action="signup.php"> <table> <tr> <td>First Name</td> <td><input type="text" name="fname"></input></td> </tr> <tr> <td>Last Name</td> <td><input type="text" name="lname"></input></td> </tr> <tr> <td>Email</td> <td><input type="text" name="email"></input></td> </tr> <tr> <td>Re-enter Email</td> <td><input type="text" name="remail"></input></td> </tr> <tr> <td>Password</td> <td><input type="password" name="pwd"></input></td> </tr> <tr> <td>Confirm Password</td> <td><input type="text" name="cpwd"></input></td> </tr> <tr> <td>Birthday</td> <td><input type="text" name="bday"></input></td> </tr> <tr> <td>Sex</td> <td><input type="text" name="sex"></input></td> </tr> <tr> <td><input type="submit" value="http://stackoverflow.com/questions/14412157/Signup"></input></td> <td><input type="button" value="http://stackoverflow.com/questions/14412157/Cancel"></input></td> </tr> </table> </form> </div>\[/code\]I need to scroll down to the div when the user clicks on the signup link.Can somebody plz explain how to do that.Thanx in advance....