top of page
Index
Bestseller
Top-Qualität, super Preis
CODE

$w.onReady(function () { });
export function button1_mouseIn(event) {$w("#BannerStateBox").changeState("BestSeller");}
export function button2_mouseIn(event) {$w("#BannerStateBox").changeState("OutOfStock");}
export function button3_mouseIn(event) {$w("#BannerStateBox").changeState("New");}
$w.onReady(function () {
$w('#button1').onClick(() => {$w("#BannerStateBox").changeState("BestSeller");})
$w('#button2').onClick(() => {$w("#BannerStateBox").changeState("OutOfStock");})
$w('#button3').onClick(() => {$w("#BannerStateBox").changeState("New");})
});
CODE-alternative
bottom of page