clean-wolf-95531
09/30/2024, 6:28 AMrhythmic-agent-34208
09/30/2024, 9:48 AMclean-wolf-95531
09/30/2024, 9:48 AMrhythmic-agent-34208
09/30/2024, 9:53 AM/* CSS */
.your-element-class {
visibility: hidden;
}
And a general example for the JS snippet:
// This is a placeholder function. Replace it with the actual function from GrowthBook SDK
function onExperimentLoaded() {
var element = document.querySelector('.your-element-class');
element.style.visibility = 'visible';
}
// Call the function when the user is assigned a variation
onExperimentLoaded();
rhythmic-agent-34208
09/30/2024, 9:53 AMrhythmic-agent-34208
09/30/2024, 9:53 AMrhythmic-agent-34208
09/30/2024, 9:53 AMrhythmic-agent-34208
09/30/2024, 9:54 AM