Hi,
i am really new to the webdesign game and i hope you can help me with this particular problem:
(Read-Only link: https://preview.webflow.com/preview/bethmanns2?utm_medium=preview_link&utm_source=designer&utm_content=bethmanns2&preview=c04d61c86a1e1d9aaeb51101eeb77e34&workflow=preview)
I followed Timothy Ricks´ steps for creating a svg map (Section7).
Now i want to write a code for a class switch. My svg path has a class assigned “WHG” which has a certain style. Then i created a button (class “Wohnungstyp1”).
Now i want to be able to switch the svg-class “WHG” to another class “WHG0” by clicking on the button “Wohnungstyp1”.
I tried this:
$(‘.Wohnungstyp1’).click(function() {
$(‘.map_whg’).siblings(‘.map_embed’).removeClass(‘WHG’);
$(‘.map_whg’).siblings(‘.map_embed’).addClass(‘WHG0’);
});
and i tried a jillion others…
Please help someone.
Have a nice day,
Yaz