Can anyone give gecko vb2005 example auto scroll page

Asked By 10 points N/A Posted on -
qa-featured

Dear Experts

I want to create a webpage in VB2005 which is when opened in a browser in Windows it should scroll down automatically till the bottom of the page. Can anyone give gecko vb2005 example for similar page?

SHARE
Answered By 0 points N/A #160384

Can anyone give gecko vb2005 example auto scroll page

qa-featured

Using the Examples

Many of the examples during this reference are complete files that you'll execute by cutting and pasting them into a replacement file, that you'll then open in your browser.

Others are snippets. You'll run them later by putting them inside JavaScript recall functions.

For instance, this window. document property example is often tested in a perfume. Here, it's known as by a button's onclick attribute:

<html>
<head>
<title>Test Page</title>
<script type="text/javascript">
function testWinDoc() {
 
  var doc= window.document;
 
  alert(doc.title);
 
}
</script>
</head>
 
<body>
  <button onclick="testWinDoc();">test document property</button>
</body>
</html>

 

Related Questions