answersLogoWhite

0


Best Answer

script language="javascript" type="text/jscript">

function metatime(btn)

{

setTimeout ("window.location.href='URL HERE';" , 15000 );

btn.value="wait 15 sec..";

}

User Avatar

Wiki User

βˆ™ 11y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

βˆ™ 11y ago

okay for this type of situation you need meta refresh!

This answer is:
User Avatar

User Avatar

Wiki User

βˆ™ 11y ago

<meta http-equiv='refresh' content='15; /some/page.html'>

The 15 is in seconds. This causes the browser to pause for the specified time, then load the specified page.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: In an HTML form I have a button which makes us to open another page in 15 seconds How will you do this?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How do you enter a search button in HTML?

You can enter a search button in HTML using this code, .


What is the HTML code for enter?

Use &lt;br /&gt; for a new line. Use &lt;p&gt;&lt;/p&gt; for a new paragraph. or if you want to link to a website or another page you put &lt;html&gt; &lt;body&gt; &lt;a href="the page or site you want to link"&gt;button text here&lt;/a&gt; &lt;/body&gt; &lt;/html&gt;


Difference between HTML and dhtml - point wise?

Dynamic HTML is basically using HTML and some other things to enhance it, usually Javascript and Styles. All HTML really does is format your page. To get your page to do things, you need more than just plain HTML. The following code will create a button that you can click on and it will pop up a message. It uses Javascript. Copy and paste it or type it exactly as it is into your code and it will work.The onClick="alert('Hello');" piece is Javascript. Without it you would still have the button, but when it was clicked, it would not do anything. The Javascript makes your page come alive as it were. That is the idea of Dynamic HTML.


How do you make an html button uneditable?

The normal code for an input button is this:To make it inactive, add this:


What is the difference between css HTML and dhtml?

* HTML is used to actually build the structure of a webpage. The text, tables, divisions, links, images, and so on. * CSS takes what HTML gives a browser, and makes it look nicer by adding color, borders, and perhaps even hiding things a user shouldn't see. * dHTML isn't a language, but a combination of HTML, CSS, and JavaScript working together. HTML builds the actual element(s), JavaScript uses scripts that makes things happen (Such as changing the colour of the background when you click a button), and CSS makes things such as changing colours actually happen (JavaScript must change the CSS, though).

Related questions

How do you enter a search button in HTML?

You can enter a search button in HTML using this code, .


how do one create a code for a HTML search button?

You can create a search button by input type search. Moreover making it's id same as the thing to be searched makes it work.


What is the code for a download button in HTML?

Example: Example.exe &lt;button type="button" onClick="location.go(example.exe)"&gt;Download&lt;/button&gt;


What is the HTML code for enter?

Use &lt;br /&gt; for a new line. Use &lt;p&gt;&lt;/p&gt; for a new paragraph. or if you want to link to a website or another page you put &lt;html&gt; &lt;body&gt; &lt;a href="the page or site you want to link"&gt;button text here&lt;/a&gt; &lt;/body&gt; &lt;/html&gt;


What is the difference between button and submit button in html?

A diferença é que um envia o comando HTML e o outro não


How To create sub buttons from a button using HTML?

horizontal button with vertical submenus


Difference between HTML and dhtml - point wise?

Dynamic HTML is basically using HTML and some other things to enhance it, usually Javascript and Styles. All HTML really does is format your page. To get your page to do things, you need more than just plain HTML. The following code will create a button that you can click on and it will pop up a message. It uses Javascript. Copy and paste it or type it exactly as it is into your code and it will work.The onClick="alert('Hello');" piece is Javascript. Without it you would still have the button, but when it was clicked, it would not do anything. The Javascript makes your page come alive as it were. That is the idea of Dynamic HTML.


Why you use javascript with HTML?

JavaScript is a script which makes HTML more interactive and adds more functionality to HTML.


How do you move from one form to another form by clicking a button in HTML?

You could use a hyperlink and use anchors (#'s): Link text goes here... But you couldn't use a button that way. The best way to use a button to do this would be with JavaScript. It is integrated into an HTML document so all you have to do is set up an event handler onclick: ...And there you are! When you click the button it will take you to the top of the next form.


How can you add a button to erase a canvas in HTML?

You need JavaScript for that purpose. You need when the button is hit, a div should hide.


How do you make an html button uneditable?

The normal code for an input button is this:To make it inactive, add this:


How does java script ehance the capabilites of HTML?

Javascript can change how HTML will work, alike how CSS makes HTML look flashy.