01.
$(
"div#AddRecButton"
).click(
function
(){
02.
$(
'input#RowInput'
).val();
03.
var
InputRecNum = $(
'input#RowInput'
).val();
04.
if
(InputRecNum > 10 ){
05.
alert(
"You have to input value not more than 10!"
);
06.
return
false
;
07.
}
else
{
08.
$(
"div#table.InputTable"
).append(StatementInputForm);
09.
}
10.
});