<form name="form1" id="form1" method="post" action="#" onsubmit="return checkForm()">
default: function(){}
options: function($slideElement, oldIndex, newIndex){ // your code here }
arguments:
$slideElement: jQuery element of the destination element
oldIndex: element index of the previous slide (before the transition)
newIndex: element index of the destination slide (after the transition)
wb.Navigate(".\index.html")
(или какой там у вас путь)<form id="main">
<input id="first" type="text" />
<input id="second" type="text" />
<input id="btn" type="button" value="Go head" />
</form>
<table>
<thead>
<th>One</th>
<th>Two</th>
</thead>
<tbody id="tbl">
<td>1</td>
<td>2</td>
</tbody>
</table>
$("#btn").on("click", function() {
var newRow =
"<tr><td>" +
$("#first").val() +
"</td><td>" +
$("#second").val() +
"</td></tr>"
$("#tbl").append($(newRow))
});