Replace some inline javascript with a UJS solution

This commit is contained in:
Tom Hughes 2013-05-06 11:09:17 +01:00
parent 8bb7cdb75a
commit e84b2bd22f
3 changed files with 18 additions and 12 deletions

View 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);
});
});
});