Definition A pushbutton indicates a possible user action
Code
to clipboard
<button type='button' class='button' 
        onclick='S10Apply("change")'>
    Change
</button>
Example

Variants Toolbar button

Code
to clipboard
<table class="headerarea" style="width: 100%;">
	<tr>
		<td style="width: 50px;">
		<!-- Button for navigating back-->
		<button class="button back" 
		        onclick="S10Apply('exit_orderdetail_back','', null, true);" 
		        type="button">&#9664;&#xFE0E;
		</button></td>
		<td style="color: white; font-size: 24px;"><b>Create new order</b> </td>
	</tr>
	<tr>
		<td style="width: 50px;"></td>
		<td style="white-space: nowrap;">
		<button class="toolbarbutton" onclick="S10Apply('create_check');"  
				type="button">
		Check</button>
		<div class="processingmessage">
			Order is being checked</div>
		<button class="toolbarbutton" onclick="S10Apply('create_save');" 
				type="button">
		Save</button>
		<div class="processingmessage">
			Order was saved</div>
		</td>
	</tr>
</table>


Component S10 Framework