<table class="sidebar_title" width="100%">
<tr>
<td id="sidebar_title"><% t 'site.sidebar.search_results' %></td>
- <td id="sidebar_close"><a href="javascript:closeSidebar()"><%= t 'site.sidebar.close' %></a></td>
+ <td id="sidebar_close"><a class="sidebar_close" href="#"><%= t 'site.sidebar.close' %></a></td>
</tr>
</table>
<div id="sidebar_content">
onclose = options.onclose;
}
- function closeSidebar() {
+ $(".sidebar_close").click(function (e) {
$("#sidebar").css("display", "none");
<%= onclose %>
onclose();
onclose = null;
}
- }
+
+ e.preventDefault();
+ });
function updateSidebar(title, content) {
$("#sidebar_title").html(title);