To call a VBScript function on click of Enter key?
问题 I have created a VBScript function OnRefreshList() which is called on the click of a button "Refresh List". Sub OnRefreshList () Initdatatable(false) if ReadFilters() = false then msgbox "It is not possible to refresh the whole orders list. Please enter more filters" exit sub end if End Sub The "Refresh List" button is defined as <td class="button cmd" valign="center" nowrap id="cmdRefresh" onclick="OnRefreshList()" title="Refresh the order list">Refresh List</td> This function is working