Quote from
luishp on September 18, 2024, 5:59 pm
@asmat, try this to toggle visibility:
BeginJS
$(".myclass").toggle(800);
EndJS
To hide:
BeginJS
$(".myclass").hide(800);
EndJS
To show again:
BeginJS
$(".myclass").show(800);
EndJS
@asmat, try this to toggle visibility:
BeginJS
$(".myclass").toggle(800);
EndJS
To hide:
BeginJS
$(".myclass").hide(800);
EndJS
To show again:
BeginJS
$(".myclass").show(800);
EndJS