top of page

Forum Posts

katharina
Jan 20, 2021
In Coding with Velo
Hi, I am working on a project for my client. The task is to integrate a map as a picture with a legend. When you hover on the names of the legend (created as buttons), a location button shall appear within in the map. So I have written the following code: export function buttonFasanenhof_mouseIn(event) { $w("#buttonLocationFasanenhof").show(); } export function buttonFasanenhof_mouseOut(event) { $w("#buttonLocationFasanenhof").hide(); } I have a similar problem with multistatus boxes used for a FAQ section that expand and collapse: export function readMoreButton2_click(event) {     $w("#stateboxFAQ2").changeState("expandedState2"); } export function readLessButton2_click(event) {     $w("#stateboxFAQ2").changeState("collapsedState2"); } Both function work perfectly fine on Firefox, but none of them work in Chrome and Safari. Can somebody help with this issue? Thanks! Katharina
0
3
66

katharina

More actions
bottom of page