Hi All, I am facing a problem with an interaction code and I don’t really know whether is a layout issue or a bug.
My site: www.chicdog.cl
In the Header of my mobile view I have a Search Bar (third party app of Instant Search) in a Container Box that is Hidden on Load and over the logo that is on the center. On the right I have 2 Search Icons (Vector Arts), one Hidden On Load (searchIsoOn), and the other overlapping it (searchISO). Both elements with an OnClick event.
Mobile View:
The code:
export function SearchIso_click(event) {
$w(‘#searchBox’).show(“SlideIn”);
$w(‘#searchIsoOn’).show(“FadeIn”)
}
export function searchIsoOn_click(event) {
$w(‘#searchBox’).hide(“SlideOut”);
$w(‘#searchIsoOn’).hide(“FadeOut”)
}
When I publish this, it works (testing on iPhone 8), but after a couple of times of clicking the interaction, it mysteriously stops working. When I go to the mobile editor and check the events they are both gone. I create the events and again and happens the same over and over again … any idea why does might be happening? Someone with similar issues.