Link to home
Start Free TrialLog in
Avatar of Whing Dela Cruz
Whing Dela CruzFlag for Anguilla

asked on

PageDown event

Hi experts, I wish to make a pagedown event using button, that every time I press the button will do pagedown at the time like the pagedown on the keyboard. Help please!

<!DOCTYPE html>
<html>
<body>
<button size="25" onclick="return ActivatePageDown()">Page Down</button><br/><br/>


<script>
function ActivatePageDown() 
{
  //Do pagedown here per press
}
</script>


</body>
</html>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Julian Hansen
Julian Hansen
Flag of South Africa image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Whing Dela Cruz

ASKER

Thank you very big Julian, its working...
You are welcome.