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

9 lines
199 B
JavaScript
Raw Normal View History

2021-05-08 14:09:02 +02:00
(function($) {
$(document).ready(function() {
2021-05-31 15:50:08 +02:00
$('._expand_site_item').click(function() {
$(this).next('tr').toggle();
return false;
2021-05-08 14:09:02 +02:00
});
});
})(jQuery)