I am using a layerslider plugin to display rotating sliders on my homepage. The sliders work as hyperlinks, and one of them should lead to a pop-up menu. However, the only class I can use is "ls-link", while the jQuery pop-up has its own class called "open-popup-link". How can I make the layerslider show that popup when the user clicks on the slider?
Is there a way to achieve this?
Code for Layerslider + Standard Slider Hyperlink
<div class="ls-slide" data-ls="slidedelay:8000 ; transition2d:5;timeshift:0;">
<img src="/img/Slide1.png" class="ls-bg" alt="Slide background"/>
<a href="/users/login" class="ls-link"></a>
</div>
Regular HTML Link for Pop-Up:
<a href="/users/register" id="register-link" class="open-popup-link">Login</a>