Explorar o código

Listing 6.19: event delegation for ajax-loaded elements.

Frederic G. MARAND %!s(int64=9) %!d(string=hai) anos
pai
achega
8bd3f38af9
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      Chapter 6/06.js

+ 1 - 1
Chapter 6/06.js

@@ -102,7 +102,7 @@ $(document).ready(function () {
     $loading.hide();
   });
 
-  $('h3.term').click(function () {
+  $('body').on('click', 'h3.term', function () {
     $(this).siblings('.definition').slideToggle();
   });
 });