I have a dropdown that triggers an ajax call when its changed:
$(\'.travel-to\').change(function(){ $.ajax({ type: \"GET\", url: \"/inc
better option is use .on() to bind function as multiple events
.on()
$("#member").on("change keyup", function(){ ----- });