
Untitled
By: a guest on
Jul 5th, 2012 | syntax:
HTML 5 | size: 1.17 KB | hits: 38 | expires: Never
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Formfill</title>
<script type="text/javascript" src="/libs/jquery/1.7.2/jquery.min.js"></script> <!-- jquery -->
<script src="jqueryform.js"></script> <!-- jquery form plugin -->
<script type="text/javascript" src="jsfunctions.js"></script> <!-- your own script -->
</head>
<body>
<div id="main"> <!-- wrapper -->
<form id="Search" method="post" action="">
<!-- you can type an id below here, the matching data will be selected from the database -->
<input id="chooseId" name="chooseId" type="search"><br>
</form>
<form id="FormtoFill" method="POST" action="">
<!-- 4 elements should be filled -->
<input type="text" id="first" name="first" /><br>
<input type="text" id="second" name="second" /><br>
<input type="text" id="third" name="third"/><br>
<textarea id="area" name="area"></textarea><br>
</form>
</div>
</body>
</html>