First page Back Continue Last page Graphics
<input type=“button”>
Sometimes you'll want to create a webpage that will do an action but won't submit the entire data. For example, you might create a Javascript program to calculate the shipping cost or the tax of a potential order. Whatever is placed in the value attribute will be displayed as the button; the name will be the name called by the script.
<input type="button" value="text" name="name" />
This requires the use of a scripting language to tie an event to the button and create an action.
<input type="button" value="Calculate Interest" name="calculator" />