]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/geocoder.js
Start layers pane
[rails.git] / app / assets / javascripts / geocoder.js
1 $(document).ready(function () {
2   $("body").on("click", ".search_more a", function (e) {
3     e.preventDefault();
4
5     var div = $(this).parents(".search_more");
6
7     div.find(".search_results_entry").hide();
8     div.find(".search_searching").show();
9
10     $.get($(this).attr("href"), function(data) {
11       div.replaceWith(data);
12     });
13   });
14 });