Hi guys i need some help, i was able to link a button in a section to a specific “Content Area OFF-Canvas”, but i need to do this with other buttons to their respective “Content Area OFF-Canvas”, but i can’t achieve it, i tried using the “Content Area OFF-Canvas” respective class but it does not work, this is the code im using with the first button and first “Content Area OFF-Canvas”:
jQuery(function($){
$( document).on(‘click’, ‘.walk-off-canvas-trigger’, function(e) {
e.preventDefault();
$(’.x-anchor-toggle’).click();
})
});
.x-anchor-toggle class is used for all off-canvas, but each one as is personal class, ex- “e153-72 x-anchor x-anchor-toggle”, so how can i link to that specific toggle class in way to have different buttons linked to different “Content Area OFF-Canvas”??
