Skip to content

Instantly share code, notes, and snippets.

@psycalc
Created June 22, 2016 13:01
Show Gist options
  • Save psycalc/1c3f2442a157600e7507db3bc44b8f37 to your computer and use it in GitHub Desktop.
Save psycalc/1c3f2442a157600e7507db3bc44b8f37 to your computer and use it in GitHub Desktop.
buttonClickEventHandler(); //если нужно при первом запуске получить json чик
$("#quote-button").on("click",buttonClickEventHandler)
function buttonClickEventHandler(e) {
$.ajax({
url: 'https://andruxnet-random-famous-quotes.p.mashape.com/?cat=movies', // указываем URL и
dataType: "json", // тип загружаемых данных
headers: {
"X-Mashape-Key": "", //здесь должен быть ключ по котромую даеться доступ выдаеться провайдером REST API
"Accept": "application/json"
},
success: function(data, textStatus) { // вешаем свой обработчик на функцию success
// }
//console.log(data);
$("#quote-paragraph").text( data.quote);
// $("#w3s").attr("href", "http://www.w3schools.com/jquery");
$("#quote-author").text('"'+ data.author +'"');
console.log(data);
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment