11 lines
281 B
JavaScript
11 lines
281 B
JavaScript
|
// https://stackoverflow.com/a/12025482
|
||
|
// https://stackoverflow.com/a/48314274
|
||
|
jQuery(document).ready(function($) {
|
||
|
$('.fund-filter').ready(function() {
|
||
|
$('.xarxaprod-titol-opcions').click(function() {
|
||
|
$(this).siblings(".filter").toggle();
|
||
|
});
|
||
|
});
|
||
|
})
|
||
|
|