I have added two jQuery UI Dropdown Autocomplete script. Now I want get both value onchange of second dropdown and want to store separately in variable. How it is possible?<
Try like this
$("#drop").change(function () { var end = this.value; var firstDropVal = $('#pick').val(); });