hm

hm / Массив всех checked

Last active 2 weeks ago

Like 0

hm revised this gist 2 weeks ago · 1c1a6be

1 file changed, 13 insertions

gistfile1.txt (file created)
@@ -0,0 +1,13 @@
1 + waitShow();
2 + var e = [];
3 + $("#prop_tab .puse:checked").each(function(){
4 + e.push($(this).val());
5 + });
6 + $.ajax({
7 + type: "POST",
8 + url: '/url/to/update/',
9 + data: "e="+implode(",", e),
10 + success: function(){
11 + waitHide();
12 + }
13 + });