Explorar el Código

Listing 6.19: event delegation for ajax-loaded elements.

Frederic G. MARAND hace 9 años
padre
commit
8bd3f38af9
Se han modificado 1 ficheros con 1 adiciones y 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();
   });
 });