Home › Forums › Quform WordPress › Elementor button popup Form
- This topic has 6 replies, 4 voices, and was last updated 5 years, 6 months ago by
Ally.
- AuthorPosts
- November 9, 2018 at 8:10 pm #27694
DavidFox
ParticipantHello,
I’m using Elementor Pro as page builder and quform wordpress to create some forms I would like to trigger the popup on click of elementor button. Do you know how to do it?I try to add:
jQuery(function ($) {
$(‘a[href=”#show-form-2″]’).click(function () {
$(‘.quform-popup-link-2’).click();
return false;
});
});but I can’t manage to make it pop up 🙂
Thanks
November 10, 2018 at 12:09 pm #27696DavidFox
ParticipantOk RESOLVED.
I use button ID and add on custom JS
jQuery(function ($) {
$(‘#show-form-paypal’).click(function (e) {
e.preventDefault();
$(‘.quform-popup-link-5’).click();
});
});Bye
November 12, 2018 at 10:35 am #27732Ally
Support StaffYou don't have permission to view this content. Please log in or register and then verify your purchases to gain access.
June 8, 2019 at 11:55 pm #29440therondp
ParticipantI have the same question here but not sure how and or where to add Javascript all button id for this to work?
June 10, 2019 at 3:53 pm #29452Ally
Support StaffYou don't have permission to view this content. Please log in or register and then verify your purchases to gain access.
October 5, 2019 at 9:23 pm #30028mastersunshine
ParticipantI followed the instruction exactly and when I click on the button the form is not popping up. What am I doing wrong?
October 8, 2019 at 11:45 am #30044Ally
Support StaffYou don't have permission to view this content. Please log in or register and then verify your purchases to gain access.
- AuthorPosts
- You must be logged in to reply to this topic.