6.4.js 276 B

123456789101112
  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', function(data) {
  9. });
  10. });
  11. });