Arc-hive-omeka-theme/asset/js/expand-site-list-item.js

9 lines
199 B
JavaScript

(function($) {
$(document).ready(function() {
$('._expand_site_item').click(function() {
$(this).next('tr').toggle();
return false;
});
});
})(jQuery)