$(() => { $('#confirm').click(() => { $.ajax({ type: 'GET', url: `/special/rebuild/confirm`, success: () => { $('#response').html('
Successfully rebuilt page directory.
'); }, error: () => { $('#response').html('
Could not rebuild page directory. Try again later.
'); } }); }); });