1. techjoomla
  2. General
  3. Monday, November 17 2014, 11:17 AM
Hello Guys,

I want to show modal popup before user get registered.

When user click on the register button, it should open modal popup & show the loading-icon.
admin Accepted Answer
Admin
Hi,
the registration page is the same of Joomla, so you can do this independently with Easy Profile.

I recommend you to use javascript on Register button with something like this:
jQuery(document).ready(function($){
$('#member-registration input[type="submit"]').click(function(e){
// here your code to show popup
e.preventDefault(); // this block submit
});
})


you can put on popup another button to submit form with javascript
  1. more than a month ago
  2. General
  3. # 1
  • Page :
  • 1


There are no replies made for this post yet.
However, you are not allowed to reply to this post.
Sorry, the discussion is currently locked. You will not be able to post a reply at the moment.