$('#btn-shorten').on('click', function(){ $.ajax({ url: '/api/v1/shorten', type: 'POST', dataType: 'JSON', data: {url: $('#url-field').val()}, success: function(data){ const $link = $('#link'); const resultHTML = `${data.shortUrl}`; $link.html(resultHTML); $link.hide().fadeIn('slow'); } }); });