mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
14 lines
250 B
JavaScript
14 lines
250 B
JavaScript
$(".clickable-row").click(function () {
|
|
window.location = $(this).data("href");
|
|
});
|
|
|
|
$('.hover-area').mouseover((e) => {
|
|
var el = $(e);
|
|
|
|
var img = $(`.${$(el[0].target).data('id')}`);
|
|
|
|
img.siblings('img').hide();
|
|
|
|
img.show();
|
|
});
|