6.3.js 252 B

1234567891011
  1. $(document).ready(function() {
  2. $('#letter-a a').click(function(event) {
  3. event.preventDefault();
  4. $('#dictionary').load('a.html');
  5. });
  6. $('#letter-b a').click(function(event) {
  7. event.preventDefault();
  8. $.getJSON('b.json');
  9. });
  10. });