PluginProbe
weForms – Easy Drag & Drop Contact Form Builder For WordPress / 1.6.8
weForms – Easy Drag & Drop Contact Form Builder For WordPress v1.6.8
1.6.7 1.6.8 1.6.9 1.6.12 1.6.13 1.6.14 1.6.15 1.6.16 1.6.17 1.6.18 1.6.19 1.6.2 1.6.20 1.6.21 1.6.22 1.6.23 1.6.24 1.6.25 1.6.26 1.6.27 1.6.28 1.6.3 1.6.4 1.6.5 1.6.6 All 74 releases
weforms / assets / js / utils / jquery-extensions.js

jquery-extensions.js in weForms – Easy Drag & Drop Contact Form Builder For WordPress 1.6.8, at assets/js/utils/jquery-extensions.js

18 lines 661 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 ;(function($) {
2 $.fn.extend({
3 /**
4 * Custom jQuery serialize wrapper.
5 *
6 * When WordPress 5.6 increased the jQuery version to 3.5.1, the serialize function changed. Instead of
7 * sending spaces as "+", they are sent as "%20". This wrapper is for backwards compatibility.
8 *
9 * @todo This function is duplicated in both the frontend and backend. Need to have the code live in
10 * just one location.
11 *
12 * @since 1.6.7
13 */
14 weSerialize: function() {
15 return $( this ).serialize().replaceAll( '%20', '+' );
16 },
17 });
18 })(jQuery);