Created
June 22, 2016 13:01
-
-
Save psycalc/1c3f2442a157600e7507db3bc44b8f37 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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