Преглед на файлове

Listing 6.16: fadeIn() on load().

Frederic G. MARAND преди 9 години
родител
ревизия
55471653ee
променени са 1 файла, в които са добавени 3 реда и са изтрити 1 реда
  1. 3 1
      Chapter 6/06.js

+ 3 - 1
Chapter 6/06.js

@@ -3,7 +3,9 @@ $(document).ready(function () {
 
   $('#letter-a a').click(function (event) {
     event.preventDefault();
-    $('#dictionary').load('a.html');
+    $('#dictionary').hide().load('a.html', function () {
+      $(this).fadeIn();
+    });
   });
 
   $('#letter-b a').click(function (event) {