Button
Author |
Message |
MyPistolsIn3D
![](http://tinypic.com/6f7cif.jpg)
|
Posted: Tue Oct 19, 2004 3:49 pm Post subject: Button |
|
|
Ok, i know u use this:
<button>Click Me!</button>
to make a button, but how do u make that button do something when you click it? |
|
|
|
|
![](images/spacer.gif) |
Sponsor Sponsor
![Sponsor Sponsor](templates/subSilver/images/ranks/stars_rank5.gif)
|
|
![](images/spacer.gif) |
Amailer
![](http://compsci.ca/wiki/images/1/19/Avatar.jpg)
|
Posted: Tue Oct 19, 2004 3:54 pm Post subject: (No subject) |
|
|
Omg, there is such a thing as <button> wow
<FORM>
<input type="submit" name="Submit" value="Baka!">
</FORM>
hooah,
types are.
HIDDEN (as a hidden field, not visiable)
TEXT (text box)
BUTTON (simple button that does not submit)
SUBMIT (submits a form)
RESET (to reset the page)
am i missing any for input? |
|
|
|
|
![](images/spacer.gif) |
rdrake
![](http://compsci.ca/v3/uploads/user_avatars/113417932472fc6c9cd916.png)
|
Posted: Tue Oct 19, 2004 4:10 pm Post subject: (No subject) |
|
|
Something like this is what I usually use:
code: | <form action="document.html" method="get">
<input type="text" name="name" />
<input type="submit" value="Submit" />
</form> |
|
|
|
|
|
![](images/spacer.gif) |
MyPistolsIn3D
![](http://tinypic.com/6f7cif.jpg)
|
Posted: Tue Oct 19, 2004 4:20 pm Post subject: (No subject) |
|
|
hmmmm, maybe im not ready for buttons quite yet. |
|
|
|
|
![](images/spacer.gif) |
|
|