Browse code

수정 내용 저장

Kang IkSeon authored on16/03/2018 06:03:10
Showing1 changed files
... ...
@@ -1,5 +1,5 @@
1 1
 (function($){
2 2
   jQuery.get(ajax_object.ajax_url, {'action':'callme'}, function(response) {
3
-    alert(response);
3
+    // alert(response);
4 4
   });
5 5
 })(jQuery);
Browse code

수정 내용 추가

Kang IkSeon authored on15/03/2018 08:55:23
Showing1 changed files
... ...
@@ -1 +1,5 @@
1
-alert('hello, world');
1
+(function($){
2
+  jQuery.get(ajax_object.ajax_url, {'action':'callme'}, function(response) {
3
+    alert(response);
4
+  });
5
+})(jQuery);
Browse code

추가 기능 구현

Kang IkSeon authored on15/03/2018 08:52:07
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1 @@
1
+alert('hello, world');