There is long registration form I have one auto-complete box like StackOverflow tag bar will have multiple tags of country. Now I want without redirecting to another page or any thing else. I want names of country to be displayed from database. I am successful in displaying without database like given below... I am using codeigniter. I really don't know how to do it...here is the code
<label for="wish_city">Cities I Want to Visit:</label>
<!--<input type="password" id="password" name="conf_password" placeholder="">-->
<?=form_input(array("name"=>"wish_city","value"=>set_value("wish_city"),"placeholder"=>"Country want to visit",'id'=>'wish_city'))?>
My script
<!-- script for autocomplete with multiple options -->
<script type="text/javascript">
$(document).ready(function() {
$("#wish_city").tokenInput([
{id: 7, name: "Ruby"},
{id: 11, name: "Python"},
{id: 13, name: "JavaScript"},
{id: 17, name: "ActionScript"},
{id: 19, name: "Scheme"},
{id: 23, name: "Lisp"},
{id: 29, name: "C#"},
{id: 31, name: "Fortran"},
{id: 37, name: "Visual Basic"},
{id: 41, name: "C"},
{id: 43, name: "C++"},
{id: 47, name: "Java"}
]);
});
</script>