From 9fde48c6f75288c50f908382cd2bb6d97bb57ceb Mon Sep 17 00:00:00 2001 From: OmasteWitkowski Date: Thu, 31 Aug 2017 18:56:06 -0600 Subject: [PATCH 1/3] I added my name --- src/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.html b/src/index.html index a1951a6a..09e8f813 100644 --- a/src/index.html +++ b/src/index.html @@ -8,7 +8,7 @@ HTML Portfolio - +Hello, My name is Omaste

jQuery Badges

From 42dac82c1cebd75ec2d6cf0017a717ac7f473699 Mon Sep 17 00:00:00 2001 From: OmasteWitkowski Date: Thu, 31 Aug 2017 19:06:16 -0600 Subject: [PATCH 2/3] I added an Ajax call --- src/index.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/index.html b/src/index.html index 09e8f813..d5e0a1a9 100644 --- a/src/index.html +++ b/src/index.html @@ -18,5 +18,12 @@

jQuery Badges

+ $.ajax({ + url: 'https://www.codeschool.com/users/185856.json', + dataType: 'jsonp', + success: function(response) { + // handle response + } + }); From 49631f123d879a195b84276ff854af1d26af748c Mon Sep 17 00:00:00 2001 From: OmasteWitkowski Date: Thu, 31 Aug 2017 19:17:55 -0600 Subject: [PATCH 3/3] commit console --- src/index.html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/index.html b/src/index.html index d5e0a1a9..2e225688 100644 --- a/src/index.html +++ b/src/index.html @@ -19,10 +19,9 @@

jQuery Badges

$.ajax({ - url: 'https://www.codeschool.com/users/185856.json', + url: 'https://www.codeschool.com/users/omaste.json', dataType: 'jsonp', - success: function(response) { - // handle response + console.log('response', response); } });