HTML/CSS/Form Attributes/type button

Материал из Web эксперт
Перейти к: навигация, поиск

"type" determines the functionality of the "button" element

    
<HTML>
<BODY>
<button id="myButton" type="button" onclick="alert("hello!");">Button Text</button>
</BODY>
</HTML>