Skip to main content

Posts

Showing posts from December 15, 2019

autosearch

js file https://jqueryui.com/autocomplete/#remote-jsonp   $("#txtCOUNTRY").keyup(function () {                 var id = $(this).attr("id");                               fillMasterData('Country', id, "hdnPrimaryCountryid", "hdnPrimaryStateid", 0);             });   $("#txtSTATE").keyup(function () {                 var id = $(this).attr("id");                 fillMasterData('State', id, "hdnPrimaryCountryid", "hdnPrimaryStateid", 1);                 //stateAutosearch(1, id, "hdnPrimaryStateid");             });  $("#txtCITY").keyup(function () {                 var id = $(this).attr("id");         ...