$(document).ready(function() { BindControls(); //catsub(); }); function BindControls() { var Countries = [ "Lucknow", "Kanpur", "Gurugram", "Ranchi", "Noida", "New Delhi", ]; var limit = 15; $('#location').autocomplete({ source: function(request, response) { var results = $.ui.autocomplete.filter(Countries, request.term); response(results.slice(0, limit)); }, minLength: 0, scroll: false, }).click(function() { $(this).autocomplete("search", ""); }); //$('#searchfield').trigger('focus'); } $( '#location' ).autocomplete({ select: function( event, ui ) { $('#searchfield').trigger('focus'); //onchangesetCity(ui.item.label); } }); function catsub() { var Countries = [ "Sub Category-1 Services-2 testing", "Packer&Movers For Domestic", "Mobile Phone", "Mobile Phone test", "Mobile Phone abhay", "Sub Category-1 Services-1", "Mobile Phone Repair", "Mobile Phone Repair MI", "Sub Category-1 Services-2", "Tour Operator", "Tour Operator For Domestic", "Tour Operator For International", "Tour Operator For International xyz", "Tour Operator For Domestic Vikash", "Tour Operator For Goa", "Sub Category-1", "Sub Category-2 Services-2", "Packer&Movers For Domestic Aggarwal", "Packer&Movers For international", "Packer&Movers For international Aggarwal", "Water Purifier Dealers", "Water Purifier Dealers Aqualogic", "Water Purifier Repair & Services", "Water Purifier Repair & Services Aqualogic", ]; var limit = 10; $('#searchfield').autocomplete({ source: function(request, response) { var results = $.ui.autocomplete.filter(Countries, request.term); response(results.slice(0, limit)); }, minLength: 0, scroll: false }).focus(function() { $(this).autocomplete("search", ""); }); } function onchangesetCity(Id){ $.ajax({ type: "Post", data:"id=" + Id + "& type=" + "select" , url: "gelcurrentLocation.php", success: function (html) { //alert(html); window.location = ''; return false; }, error: function (e) { } }); }