Content area off canvas as link in text

Hello, X-Masters.

Can I open “content area off canvas” element via text link (not via elements button)?

I want to use long text and place my comments (tips) in “off canvas”. Users could click on the word (link) and open the canvas.
Is it real?

Thank you.

Hi @IvchenkoDV,

Please add the my-toggle class to your conten area off cavas:

After that, wrap your text with the <a> tag likes this:

<a href="#" class="open-toggle">Open Off Canvas</a>

Then add the following Custom JS:

jQuery(document).ready(function($) {
	$('.open-toggle').on('click touchend', function(event) {
		event.preventDefault();
		$('a.x-anchor-toggle.my-toggle').trigger('click');
	});
});

Hope it helps :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.