- $("#query")
- .on("focus", function() {
- $("#describe_location").fadeOut(100);
+ $(".search_form input[name=query]")
+ .on("input", function(e) {
+ if ($(e.target).val() == "") {
+ $(".describe_location").fadeIn(100);
+ } else {
+ $(".describe_location").fadeOut(100);
+ }