2017-08-05 20:14:17 +00:00
|
|
|
$('#btn-shorten').on('click', function(){
|
2016-02-07 21:16:07 +00:00
|
|
|
$.ajax({
|
2017-08-05 20:14:17 +00:00
|
|
|
url: '/api/v1/shorten',
|
2016-02-07 21:16:07 +00:00
|
|
|
type: 'POST',
|
|
|
|
dataType: 'JSON',
|
|
|
|
data: {url: $('#url-field').val()},
|
|
|
|
success: function(data){
|
2017-08-05 22:28:59 +00:00
|
|
|
const $link = $('#link');
|
|
|
|
const resultHTML = `<a class="result" href="${data.shortUrl}">${data.shortUrl}</a>`;
|
|
|
|
$link.html(resultHTML);
|
|
|
|
$link.hide().fadeIn('slow');
|
2016-02-07 21:16:07 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|