Great plugin! Just wondering if you could help me implement this to trigger alongside a form action? e.g. when the form is submitted, the popup is triggered?
Thanks!
Great plugin! Just wondering if you could help me implement this to trigger alongside a form action? e.g. when the form is submitted, the popup is triggered?
Thanks!
Add this script to the page:
jQuery('#form').submit(function(){
$('#popup').reveal();
})
replace the #form and #popup with the ID of corresponding elements.
You must log in to post.