jQuery(document).ready(function () {
jQuery("body").css("display", "none");
jQuery("body").fadeIn(2000);
jQuery("a:not(.test1, .test2)").click(function (event) {
event.preventDefault();
linkLocation = this.href;
jQuery("body").fadeOut(1000, redirectPage);
});
function redirectPage() {
window.location = linkLocation;
}
});
почему нельзя/плохо использовать вот такую конструкцию и/или что лучше её.
export const getNews = async () => {
return fetch(`https://newsapi.org/v2/top-headlines?country=us&apiKey='''''''''`)
.then(res => res.json())
.then(res => {
return res;
});
};
getNews()
.then(news => {
console.log(news);
})
.catch(error => {
console.log(error);
});