ENXF NET
Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
- Joined
- Nov 13, 2018
- Messages
- 26,943
- Points
- 823
Reputation:
I have the following in the template but it no longer works in 2.3. What is causing this to break?
Code:
Continue reading...
Code:
Code:
<xf:js>
$(".jf-wrapper").on("click", function(event) {
$(".jf-wrapper").addClass("is-active");
event.stopPropagation();
});
$(".jf-wrapper").on("click", function(event) {
event.stopPropagation();
});
$(document).on("click", function(event) {
$(".jf-wrapper").removeClass("is-active");
});
</xf:js>
Continue reading...