<html>
<head>
<link rel="stylesheet" type="text/css" href="css/jquery.autocomplete.css" />
<script type="text/javascript" src="ajax/jquery.min.js"></script>
<script src="ajax/jquery.autocomplete.js"></script>
<style>
input {
font-size: 120%;
}
</style>
</head>
<body>
<h3>Country</h3>
<input type="text" name="cid" id="cid"/>
<input type="text" name="cname" id="cname"/>
<script>
$("#fname").autocomplete("getData.jsp");
</script>
</body>
</html>
Since, when i type "s" into cname, then it shows the list of some value which start with the letter "s". Like
- South:S
- South-East:SE
- South-West:SW
But, and when i select any of the option, then it shows into cname textbox. But, i want that, whenever option selected, one part i.e. South will be in cname and S will be in cid. How can i achieve this. Need help.!!
Thanks in advance