$(document).ready(function () { setTimeout(function () { $.ajax({ url: 'index-albums?auth='+$('#token').val(), method: 'GET', dataType: 'html', beforeSend: function () { $("#loading").show(); }, success: function (res) { $("#loading").hide(); if (res === 'error') { $("#albums-container").html('

Something went wrong!

'); } else { $("#albums-container").html(res); } }, error: function () { $("#loading").hide(); $("#albums-container").html('

Failed to load albums.

'); } }); }, 2000); // 2s delay });