-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.js
62 lines (61 loc) · 1.62 KB
/
api.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// $(document).ready(function() {
// var ajaxcall = function () {
// var input1 = $("#searchbar").val();
// $.ajax ({
// url: "https://pixabay.com/api/",
// method: "GET",
// data: {
// key: "2409187-ee958c2d8895c6eb14d3ce314",
// q: input1,
// },
// success: handleResults
// });
// function handleResults(response_body) {
// console.log(response_body)
// response_body.hits.forEach(function(item) {
// var url = item.previewURL;
// var image = $(document.createElement("img"));
// image.attr("src", url);
// image.attr("class", "resultImage");
// image.appendTo("#photo-container")
// });
// };
// };
// document.getElementById("#searchbar").onkeydown = function(e){
// if(e.keyCode == 13){
// ajaxcall;
// }
// else {
// $("#searchbutton").click(ajaxcall)
// }
// };
// $("#searchbar").bind("keydown", (function(enter) {
// if(enter.keyCode == 13) {
// enter.preventDefault();
// ajaxcall;
// }
// });
$(document).ready(function() {
$("button").click(function () {
var input1 = $("#searchbar").val();
$.ajax ({
url: "https://pixabay.com/api/",
method: "GET",
data: {
key: "2409187-ee958c2d8895c6eb14d3ce314",
q: input1,
},
success: handleResults
});
function handleResults(response_body) {
console.log(response_body)
response_body.hits.forEach(function(item) {
var url = item.previewURL;
var image = $(document.createElement("img"));
image.attr("src", url);
image.attr("class", "resultImage");
image.appendTo("#photo-container")
});
}
})
})