Currently, I'm focusing on a specific script :
http://www.andwecode.com/playground-demo/pop-up-login-signup-box-jquery/#
I've made some adjustments to the Gmail and Facebook boxes within this script. When clicking on them, I want them to display a login form. For instance, with the Gmail box:
<a href="#1" class="social_box google" id="login_form" >
<span class="icon"><i class="fa fa-google-plus"></i></span>
By adding the ID : (id="login_form")
, the desired function was achieved successfully!
However, the issue arises when attempting to use the same ID for multiple boxes which renders the login button ineffective.
Any suggestions or solutions on how to enable all the boxes to direct to the login form effectively?