answersLogoWhite

0

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

12y ago

What else can I help you with?

Continue Learning about Engineering
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 <button type="button" onClick="location.go(example.exe)">Download</button>


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


What is the HTML code for enter?

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


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 do you make an html button uneditable?

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


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.


Usig HTML how do you make a link under a button?

Button is automatically used to hyperlink so there is no need to href. You can easily place onclick option on the button.