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 when I click on the title, only the child list of that title and the other lists are not called tbm to explain better: link