Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 

<BUTTON ...>

Usage Recommendation
use <INPUT ...> instead

  • TYPE: what type of button is this
  • onClick: script to run when the user clicks here
  • NAME: name of this button element
  • VALUE: the value sent with the form
 

<BUTTON ...> creates a button. Unlike <INPUT ...>, <BUTTON ...> is a container which allows you to put regular HTML contents in the button, including text and pictures. Unfortunately, <BUTTON ...> does not degrade well, and so at this time it's best to stick with <INPUT ...>.

this code produces this
<BUTTON TYPE=SUBMIT>
<IMG SRC="../graphics/sfsmile.gif" HEIGHT=97 WIDTH=105 ALT="Starflower"  ALIGN="ABSMIDDLE">
<STRONG>Send It In!</STRONG>
</BUTTON>

By default, <BUTTON ...> creates a plain button, much like <INPUT TYPE=BUTTON>. With the TYPE attribute, <BUTTON ...> can also create submit and reset buttons. The HTML code put between <BUTTON ...> and </BUTTON> is not the value sent with the form. The value of the button determined by the <INPUT VALUE="..."> attribute.

 
 
  Copyright 1997-2002 Idocs inc. Published under the terms of the Open Content License Design by Interspire