2
jQuery(document).ready(function() {
$('.heading-list').bind('click',function(){
$('.list').children().css({ 'display': 'block' });
})
$('.heading-list').bind('dblclick',function(){
$('.list').children().css({ 'display': 'none' });
})
});
I want that when clicking on the title, only the Child list of that title and the other lists are not called tbm to explain better: https://jsfiddle.net/FernandoSouza/67z3y1nr/#
Can you explain the question further?
– Sergio