Replace some inline javascript with a UJS solution
This commit is contained in:
parent
8bb7cdb75a
commit
e84b2bd22f
3 changed files with 18 additions and 12 deletions
14
app/assets/javascripts/geocoder.js
Normal file
14
app/assets/javascripts/geocoder.js
Normal file
|
@ -0,0 +1,14 @@
|
|||
$(document).ready(function () {
|
||||
$("body").on("click", ".search_more a", function (e) {
|
||||
e.preventDefault();
|
||||
|
||||
var div = $(this).parents(".search_more");
|
||||
|
||||
div.find(".search_results_entry").hide();
|
||||
div.find(".search_searching").show();
|
||||
|
||||
$.get($(this).attr("href"), function(data) {
|
||||
div.replaceWith(data);
|
||||
});
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue