The before-tab-display
event is fired before the display of a tab.
This is one of the various events WisePops can trigger as part of our JS Callbacks feature.
Prevent tab display
The display of the tab can be prevented by calling preventDefault()
on the event:
wisepops('listen', 'before-tab-display', function(event) {
event.preventDefault();
});
Event target
The targeted element (event.target
) is the tab HTML element, with the class wisepops-tab.