Pārlūkot izejas kodu

Listing 6.3: $.loadJSON().

Frederic G. MARAND 9 gadi atpakaļ
vecāks
revīzija
c114f16a58
1 mainītis faili ar 5 papildinājumiem un 0 dzēšanām
  1. 5 0
      Chapter 6/06.js

+ 5 - 0
Chapter 6/06.js

@@ -6,4 +6,9 @@ $(document).ready(function () {
     $('#dictionary').load('a.html');
     alert('Loaded');
   });
+
+  $('#letter-b a').click(function (event) {
+    event.preventDefault();
+    $.getJSON('b.json');
+  });
 });