PluginProbe
User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor / 4.0.3
User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor v4.0.3
4.0.3 4.0.2 4.0.1 4.0.0 3.16.6 3.16.5 3.16.4 3.16.3 3.16.2 3.16.1 3.16.0 3.15.9 3.9.9 3.9.5 3.9.6 3.9.7 3.9.8 1.1.7 1.1.8 1.1.9 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 All 341 releases
profile-builder / assets / js / script-front-end.js

script-front-end.js in User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor 4.0.3, at assets/js/script-front-end.js

25 lines 928 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 jQuery(document).ready(function(){
2
3 if( jQuery("#wppb-register-user").length ) {
4 jQuery('#wppb-register-user').on('submit', function (e) {
5
6 //disable the submit button
7 jQuery('.form-submit #register').attr('disabled', true);
8
9 })
10 }
11
12 if( !window.wppb_disable_automatic_scrolling || window.wppb_disable_automatic_scrolling != 1 ){
13 //scroll to top on success message
14 if( jQuery("#wppb_form_general_message").length ){
15 jQuery([document.documentElement, document.body]).animate({ scrollTop: jQuery("#wppb_form_general_message").offset().top }, 500);
16 }
17 }
18
19 // Fix for Select2 search not focusing
20 jQuery(document).on('select2:open', function() {
21 let allSelect2Found = document.querySelectorAll('.select2-container--open .select2-search__field');
22 allSelect2Found[allSelect2Found.length - 1].focus();
23 })
24
25 })