Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<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

share|improve this question
Check out the autocomplete demos at jqueryui.com/demos/autocomplete/#custom-data – iblue Mar 16 '12 at 14:31

1 Answer

Try to define the behavior of the .select handler of your autocomplete

this should be something like :

$("#fname").autocomplete({    
    source : "getData.jsp",
    select : function(e, ui) {
        // what to do when an element is selected ?
        $('#cid').val(ui.item.value)
    }});
share|improve this answer
sorry .. not working..!! – cool_ravi Mar 16 '12 at 14:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.