06.js 189 B

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