PluginProbe
Repeater Fields for Gravity Forms / 2.4.6
Repeater Fields for Gravity Forms v2.4.6
3.2.0 3.1.1 3.1.0 3.0.4 3.0.3 3.0.2 3.0.1 3.0.0 2.5.1 2.5.0 2.4.6 trunk 2.0.5 2.0.9 2.1.0 2.3.2 2.3.7 2.4.1 2.4.3 2.4.4 2.4.5
repeater-for-gravity-forms / yeekit / yeekit.js

yeekit.js in Repeater Fields for Gravity Forms 2.4.6, at yeekit/yeekit.js

14 lines 430 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 (function($) {
2 "use strict";
3 $( document ).ready( function () {
4 $("body").on("click",".notice.is-dismissible",function(e){
5 var data = {
6 'action': 'yeekit_dismiss_noty',
7 'id': $(this).data('id'),
8 'nonce': yeekit_list_addons.nonce,
9 };
10 $.post(ajaxurl, data, function() {
11 });
12 })
13 })
14 })(jQuery);