PluginProbe
weForms – Easy Drag & Drop Contact Form Builder For WordPress / 1.2.9
weForms – Easy Drag & Drop Contact Form Builder For WordPress v1.2.9
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 / weforms-shortcode.js

weforms-shortcode.js in weForms – Easy Drag & Drop Contact Form Builder For WordPress 1.2.9, at assets/weforms-shortcode.js

19 lines 396 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*jshint devel:true */
2 /*global send_to_editor */
3 /*global tb_remove */
4
5 jQuery(function($) {
6
7 $('#weforms-form-insert').on('click', function(e) {
8 e.preventDefault();
9
10 var shortcode = '';
11
12 var form_id = $('#weforms-form-select').val();
13 shortcode += '[weforms id="' + form_id + '"]';
14
15 send_to_editor(shortcode);
16 tb_remove();
17 });
18 });
19