فهرست منبع

Listing 6.7: fetching and evaluating JS with $.getScript().

Frederic G. MARAND 9 سال پیش
والد
کامیت
7c9b9da70c
1فایلهای تغییر یافته به همراه6 افزوده شده و 0 حذف شده
  1. 6 0
      Chapter 6/06.js

+ 6 - 0
Chapter 6/06.js

@@ -32,4 +32,10 @@ $(document).ready(function () {
       $('#dictionary').html(html);
     });
   });
+
+  $('#letter-c a').click(function (event) {
+    event.preventDefault();
+    $.getScript('c.js');
+  });
+
 });