Hello,
I need to hide/show a single page element when a certain tab title inside it is clicked.
How can I do that in a code block?
Thanks!
Hey mmagnani!
Everything is possible, but that would need a lot of work to be done.
You can contact one of our Customization Contractors, who will help you out with the process.
http://kriesi.at/contact/customization
Let us know if we could do anything else, regarding our theme
Best regards,
Basilis
OK, but I was expecting something like the solution at
https://kriesi.at/support/topic/tab-title-click-event-handlers/
Hi!
Please refer to this thread – https://kriesi.at/support/topic/to-fold-the-color-section-open/
You can turn on custom CSS field for ALB elements – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ to target specific elements.
Cheers!
Yigit
I had to follow the solution published to Enfold Support Ticket #507014 customer, enclosing JQuery selectors in a Scroll event. That works, but the actions will be fired multiple times.
(function($) {
$(window).scroll(function() {
/* selectors and actions here */
}).scroll;
})(jQuery);
Thanks in advance for a better solution.