Browse
For agents
About
weForms – Easy Drag & Drop Contact Form Builder For WordPress
/
1.6.27
weForms – Easy Drag & Drop Contact Form Builder For WordPress
v1.6.27
Switch version
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
Overview
Code
weforms
/
assets
/
js
/
weforms-shortcode.js
weforms-shortcode.js
in weForms – Easy Drag & Drop Contact Form Builder For WordPress 1.6.27, at assets/js/weforms-shortcode.js
19 lines
414 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
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