/* * autocomplete-customer.js * * * */ $(function() { $("#dialog").hide(); $("#customerName").change(function () { $("#dialog").dialog('close'); //Remove any previously opened dialogs $.post("/customers/similarCustomers", $("#customerName").serialize(), function(data) { $("#similarCustList").html(data); }); $("#dialog").dialog({position: 'right', width: 400}); }), $("#CustomerCountryName").autocomplete({ source: "/countries/completeCountry", minLength: 3, select: function(event, ui) { //alert("You selected " + ui.item.value + " ID:"+ ui.item.id); $("#CustomerCountryId").val(ui.item.id); if(ui.item.value == 'Australia') { $("#ABN").show(); } else { $("#ABN").hide(); } } }); });