Hello, I'm working on the following editor: http://science-travel-com.stackstaging.com/cpicks/
In the left colum I have buttons, onclick triggers a drop down menue here (I have no entries for now, but this will follow).
No my question: Can I trigger these buttons: ('sort', '+', 'DEL') independently from the parent button? Thanks.
buttons within button clickable indepedently
Moderators: egami, macek, gesf
I deactivate the click-functionality of the parent button, but then I have to refresh the page in order to make onclick work again
Code: Select all
$('.plus').on('click',function(){
$('.accordion').off('click');
//...........
});