| 1234567891011121314151617181920 |
- (function($) {
- $(document).ready(() => {
- $('a.catch').click(e => {
- const link = $(e.target);
- console.log(link);
- e.preventDefault();
- $.ajax({
- type: link.data('method'),
- url: link.attr('href'),
- dataType: 'json',
- success: data => {
- console.log(data);
- },
- error: () => {
- console.log(arguments);
- }
- })
- })
- });
- })(jQuery)
|