06.js 170 B

12345678
  1. $(document).ready(function () {
  2. 'use strict';
  3. $('#letter-a a').click(function (event) {
  4. event.preventDefault();
  5. $('#dictionary').load('a.html');
  6. });
  7. });