Viewing 1 replies (of 1 total)
  • Plugin Author Eero Hermlin

    (@eero-hermlin)

    Hi

    I looked around in this site and didn’t found a button having class “meetme” and also didn’t notice any enabled scrollboxes. But I discovered this part: <div id="meetme"><a href=''>Meet me via video</a></div>

    So, perhaps you was trying to create button like this:
    <a href='' class="meetme">Meet me via video</a>?

    In this case, we should worry about the empty value of href parameter. I guess, empty href causes page to reload, and it is unwanted action causing scrollbox to disappear immediately.

    To have <a href=""> tag what does nothing and does not attempt to navigate anywhere, is better to use following href value <a href="javascript:void(0);"> instead.

    And to create just a button, you could skip the “a” tag completely: <div class="small-button smallteal meetme" style="cursor: pointer">Meet me via video</div>

    Did it help?

Viewing 1 replies (of 1 total)
  • The topic ‘Onclick Element shows popup for 1s then closes even with auto close off’ is closed to new replies.