$("#Screen").text(" ");
You don't have an id "Screen" in your html
$("#C").click(function(){clearScreen();});
@wearenotgroot this is what i have
```$( document ).ready(function() {
console.log( "ready!" );
$("C").click(function(){clearScreen();});
function clearScreen(){
$("#screen").text(" ");
}
});
```
$( document ).ready(function() {
console.log( "ready!" );
$("C").click(function(){clearScreen();});
function clearScreen(){
$("#screen").text(" ");
}
});
lumexralph sends brownie points to @wearenotgroot :sparkles: :thumbsup: :sparkles:
vizflux sends brownie points to @dickfink :sparkles: :thumbsup: :sparkles:
:star: 171 | @dickfink | http://www.freecodecamp.com/dickfink
@vizFlux
function countdownCtrl() {
if (seconds === 0) {
minutes--;
seconds = 59;
} else {
seconds--;
}
// Executing timeCount();
(function timeCount() {
if (minutes === 0 && seconds === 0) {
clearInterval(interval);
if (break_length) {
breakInterval = setInterval(breakcountCtrl, 1000);
}
} else {
$('#total').html(minutes + ":" + (seconds < 10 ? "0" : "") + String(seconds));
}
})();
}
If seconds === 0 when you call countdownCtrl(), then it will set seconds to 59. This means that you never fulfil the “if (muntes === 0 && seconds == 0)” statement in the timecount() function….
erbastian sends brownie points to @mutantspore :sparkles: :thumbsup: :sparkles:
:star: 1143 | @mutantspore | http://www.freecodecamp.com/mutantspore
int RoundUp(int toRound)
{
return (10 - toRound % 10) + toRound;
}
int RoundDown(int toRound)
{
return toRound - toRound % 10;
}
vizflux sends brownie points to @dickfink :sparkles: :thumbsup: :sparkles:
:star: 175 | @dickfink | http://www.freecodecamp.com/dickfink
$(document).ready(function() {
/* resources i leaned from:
http://www.sitepoint.com/use-jquerys-ajax-function/
*/
//global Variables
$("#generate").on('click', getQuote);
$("#tweet").on('click',sendTweet);
var quote = "";
var author = "";
function getQuote(){
$.ajax({
//url to andrux quotes
url: "https://andruxnet-random-famous-quotes.p.mashape.com/cat=famous?callback?",
//object sending a key through the headers
headers: {
'X-Mashape-Key': 'SJFL2vk9l3msh8V2MTNx5OJOfY8Cp169i0Yjsn2XteSoDyqWH9'
},
success: function(data) {
//grab quote obj
var quoteObj = JSON.parse(data);
//grab quote
quote = quoteObj.quote;
//grab author
author = quoteObj.author;
//Target text for quote
$('#text').html(quote);
//Target author for quote author and animate
$("#author").animate({
opacity: 0
}, 500,
function() {
$(this).animate({
opacity: 1
}, 500);
$('#author').html(author);
});
}//end of success object
});//end of ajax function
}//end getQuote
function sendTweet() {
//tweet vars
var maxTweet = 140;
var truncated = '';
var hash = "#quote";
var tweetLength = quote.length + author.length + hash.length;
//Truncate tweet if quote if over 140 chars
if(tweetLength > maxTweet){
truncated = quote.slice(0, maxTweet - author.length - 6 - hashtag);
$("#tweet").attr('href', "https://twitter.com/intent/tweet?text=" + truncated + " " + author + hash);
} else {
console.log('ok ' + quote);
$("#tweet").attr('href', "https://twitter.com/intent/tweet?text=" + quote + " " + author + hash);
}
}//end of sendTweet
});
/* resources i leaned from:
http://www.sitepoint.com/use-jquerys-ajax-function/
*/
//global Variables
var quote = "";
var author = "";
function getQuote(){
$.ajax({
//url to andrux quotes
url: "https://andruxnet-random-famous-quotes.p.mashape.com/cat=famous?callback?",
//object sending a key through the headers
headers: {
'X-Mashape-Key': 'SJFL2vk9l3msh8V2MTNx5OJOfY8Cp169i0Yjsn2XteSoDyqWH9'
},
success: function(data) {
//grab quote obj
var quoteObj = JSON.parse(data);
//grab quote
quote = quoteObj.quote;
//grab author
author = quoteObj.author;
//Target text for quote
$('#text').html(quote);
//Target author for quote author and animate
$("#author").animate({
opacity: 0
}, 500,
function() {
$(this).animate({
opacity: 1
}, 500);
$('#author').html(author);
});
}//end of success object
});//end of ajax function
}//end getQuote
function sendTweet() {
//tweet vars
var maxTweet = 140;
var truncated = '';
var hash = "#quote";
var tweetLength = quote.length + author.length + hash.length;
//Truncate tweet if quote if over 140 chars
if(tweetLength > maxTweet){
truncated = quote.slice(0, maxTweet - author.length - 6 - hashtag);
$("#tweet").attr('href', "https://twitter.com/intent/tweet?text=" + encodeURIComponent(truncated + " " + author + hash));
} else {
$("#tweet").attr('href', "https://twitter.com/intent/tweet?text=" + encodeURIComponent(quote + " " + author + hash));
}
}//end of sendTweet
$(document).ready(function() {
$("#generate").on('click', getQuote);
//$("#tweet").on('click', sendTweet);
//test
$("#tweet").on('click', function() {
$("#tweet").attr('href', "https://twitter.com/intent/tweet?text=" + encodeURIComponent(quote));
});
});
$("#tweet").on('click', sendTweet);
Working on the weather app
http://codepen.io/mca62511/pen/qbwQOa
The URL I generate, when used in the browser, shows the JSON information that I need.
However I can't get any of the information to show through console.log, so I think something about my &.getJSON must be messed up
$("#unit").click(function(){
if(unit==="celcius"){
$("#temperature").html(fahrenheit+"<button id='unit'>°F</button>");
unit="fahrenheit";
}
else{
$("#temperature").html(fahrenheit+"<button id='unit'>°C</button>");
unit="celcius";
}
});
I can't seem to be able to switch back and forth. Please help!
var apiKey = "7271d3292aac8f43062a11e66a3aa1b0";
var baseOpenWeatherUrl = "http://api.openweathermap.org/data/2.5/weather";
var apiOpenWeatherUrl = "";
$("document").ready(function() {
// construct url based on location
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
apiOpenWeatherUrl = baseOpenWeatherUrl + "?lat=" + position.coords.latitude + "&lon=" + position.coords.longitude + "&APPID=" + apiKey;
console.log(apiOpenWeatherUrl)
$.getJSON(apiOpenWeatherUrl, function(json) {
console.log(json);
});
});
}
});
mca62511 sends brownie points to @cragsify and @wearenotgroot and @mutantspore and @dposse :sparkles: :thumbsup: :sparkles:
:star: 1145 | @mutantspore | http://www.freecodecamp.com/mutantspore
:star: 284 | @dposse | http://www.freecodecamp.com/dposse
:star: 885 | @wearenotgroot | http://www.freecodecamp.com/wearenotgroot
:star: 323 | @cragsify | http://www.freecodecamp.com/cragsify
if I have a
$(".textDiv").html("<button id="unit">text</button>");
How can I retrieve the text inside of button element with "unit" id?
$(".textDiv").html("<button id='unit'>text</button>");
val()
is typically for inputs, selects, etc. i don't think it's going to work in this case. @Swoozeki try $("#unit").text()
instead
krter sends brownie points to @cragsify :sparkles: :thumbsup: :sparkles:
:star: 324 | @cragsify | http://www.freecodecamp.com/cragsify
synflyn28 sends brownie points to @cragsify :sparkles: :thumbsup: :sparkles:
:star: 325 | @cragsify | http://www.freecodecamp.com/cragsify
synflyn28 sends brownie points to @cragsify :sparkles: :thumbsup: :sparkles:
:warning: synflyn28 already gave cragsify points
synflyn28 sends brownie points to @h4r1m4u and @cragsify :sparkles: :thumbsup: :sparkles:
:warning: synflyn28 already gave cragsify points
:star: 1428 | @h4r1m4u | http://www.freecodecamp.com/h4r1m4u
var baseApiUrl = 'https://en.wikipedia.org/w/api.php?callback=?',
getSearchTopicParams = {
action: 'query',
format: 'json',
formatversion: 2,
prop: 'pageimages|extracts|info', // return page images, extracts
pilimit: 10, // how many page images to return
exlimit: 10, // how many extracts to return
exchars: 500, // extract is 500 characters long
explaintext: "", // extract is plain text, not HTML
exintro: "", // return only content before the first section. has to be present otherwise wikipedia complains the extract are too long
inprop: 'url', // return page url
generator: 'search',
gsrnamespace: 0, // Seach '(Main)'
gsrlimit: 10, // return 10 pages,
gsrsearch: '', // the actual query to search, will be set when the function is called
}
synflyn28 sends brownie points to @h4r1m4u :sparkles: :thumbsup: :sparkles:
:warning: synflyn28 already gave h4r1m4u points
synflyn28 sends brownie points to @h4r1m4u :sparkles: :thumbsup: :sparkles:
:warning: synflyn28 already gave h4r1m4u points
lewis65 sends brownie points to @wearenotgroot :sparkles: :thumbsup: :sparkles:
:star: 886 | @wearenotgroot | http://www.freecodecamp.com/wearenotgroot
var wikiSearch = "https://en.wikipedia.org/w/api.php?action=query&list=search&srsearch=" + searchTerm +"&callback=?&format=json&utf8=";
$.ajax({
url: wikiSearch,
dataType: 'jsonp',
success: function(data){
console.log(data);
// for (var j = 0; j < json[search].length; j++) {
// $('window').append('<p>'+json[i]+'</p><br>');
// }
}
brettfelts sends brownie points to @lewis65 and @h4r1m4u :sparkles: :thumbsup: :sparkles:
:star: 140 | @lewis65 | http://www.freecodecamp.com/lewis65
:star: 1429 | @h4r1m4u | http://www.freecodecamp.com/h4r1m4u
clarkarnold sends brownie points to @brettfelts :sparkles: :thumbsup: :sparkles:
:star: 361 | @brettfelts | http://www.freecodecamp.com/brettfelts
lsrus sends brownie points to @mutantspore :sparkles: :thumbsup: :sparkles:
:star: 1148 | @mutantspore | http://www.freecodecamp.com/mutantspore
lsrus sends brownie points to @wearenotgroot :sparkles: :thumbsup: :sparkles:
:star: 887 | @wearenotgroot | http://www.freecodecamp.com/wearenotgroot
@Krter Definition and Usage
Metadata is data (information) about data.
The <meta> tag provides metadata about the HTML document. Metadata will not be displayed on the page, but will be machine parsable.
Meta elements are typically used to specify page description, keywords, author of the document, last modified, and other metadata.
The metadata can be used by browsers (how to display content or reload page), search engines (keywords), or other web services.
lsrus sends brownie points to @mutantspore and @wearenotgroot :sparkles: :thumbsup: :sparkles:
:warning: lsrus already gave mutantspore points
:warning: lsrus already gave wearenotgroot points
krter sends brownie points to @wearenotgroot :sparkles: :thumbsup: :sparkles:
:star: 888 | @wearenotgroot | http://www.freecodecamp.com/wearenotgroot
document.getElementById("text").innerHTML = "Test Quote";
@Valeesi yeah let me paste my comments from the /Help room here:
@Valeesi you've got
getElementIdBy(".text")
there's a few things wrong here. it needs to be preceeded bydocument
, it'sgetElementById
notgetElementIdBy
and it's"text"
not".text"
@Valeesi sodocument.getElementById("idGoesHere")
@Valeesi it's a little simpler with jQuery.$("#idGoesHere").text(variableGoesHere)
valeesi sends brownie points to @qualitymanifest :sparkles: :thumbsup: :sparkles:
:star: 973 | @qualitymanifest | http://www.freecodecamp.com/qualitymanifest
randomQuote
function with a click function. and you'll have your random number variable inside your click function, so that it changes each time #text
is clicked
valeesi sends brownie points to @qualitymanifest :sparkles: :thumbsup: :sparkles:
:warning: valeesi already gave qualitymanifest points
pradeepce sends brownie points to @codernoob :sparkles: :thumbsup: :sparkles:
:star: 335 | @codernoob | http://www.freecodecamp.com/codernoob
pradeepce sends brownie points to @dshgna :sparkles: :thumbsup: :sparkles:
:star: 149 | @dshgna | http://www.freecodecamp.com/dshgna
dshgna sends brownie points to @pradeepce :sparkles: :thumbsup: :sparkles:
:star: 346 | @pradeepce | http://www.freecodecamp.com/pradeepce
Hey guys,
I need help with the wikipedia API.
I generate a working url (checked in browser) but it doesn't work with getJSON :
$("#search").click(function searchWiki() {
var keyword = $("#keyword").val();
var wikiUrl = 'http://en.wikipedia.org/w/api.php?action=opensearch&format=json&limit=10&search=' + keyword;
$.getJSON(wikiUrl, function (data) {
$("#result").html(data);
});
});
Any idea ?
Thanks in advance.
@mca62511 : http://codepen.io/thomasduval/pen/qbwvoj
@bitgrower : Didn't find anything useful
@kirbyedy : If I understand the way callback work, I would need to use this instead :
$("#search").click(function searchWiki() {
var keyword = $("#keyword").val();
var wikiUrl = 'http://en.wikipedia.org/w/api.php?action=opensearch&format=json&callback=data&limit=10&search=' + keyword;
$.getJSON(wikiUrl, function (data) {
$("#result").html(data);
});
});
Right ?
callback=?
var wikiUrl = 'http://en.wikipedia.org/w/api.php?callback=?&action=opensearch&format=json&limit=10&search=' + keyword;
text-align: center
..col-xs-3
.col-xs-3
codernoob sends brownie points to @nnluukhtn :sparkles: :thumbsup: :sparkles:
:star: 8 | @nnluukhtn | http://www.freecodecamp.com/nnluukhtn
dseright sends brownie points to @kirbyedy :sparkles: :thumbsup: :sparkles:
:star: 496 | @kirbyedy | http://www.freecodecamp.com/kirbyedy
dshgna sends brownie points to @hman1911 :sparkles: :thumbsup: :sparkles:
:star: 91 | @hman1911 | http://www.freecodecamp.com/hman1911
Hey can anyone help me with a bit of a math issue? http://codepen.io/MikeASNT/pen/adxGoL?editors=0010
I would like my "New Game" button to generate "Sudoku" values, I want it to be random enough that it isn't a set amount of games, but also accurate enough to not produce impossible games
sivilll sends brownie points to @h4r1m4u :sparkles: :thumbsup: :sparkles:
:star: 1430 | @h4r1m4u | http://www.freecodecamp.com/h4r1m4u
exhibitarts sends brownie points to @alexgaudiosi :sparkles: :thumbsup: :sparkles:
:star: 7 | @alexgaudiosi | http://www.freecodecamp.com/alexgaudiosi
document.getElementById("wrapper").innerHTML = "Loading...";
var users, str, apiUrl = [];
users = ["freecodecamp", "storbeck", "terakilobyte", "habathcx","RobotCaleb","thomasballinger","noobs2ninjas","beohoff"];
window.onload = function loadOnStart() {
document.getElementById("wrapper").innerHTML = "";
for (var i = 0; i < users.length; i++) {
str = "https://api.twitch.tv/kraken/streams/" + users[i] + "?callback=myCallback";
apiUrl.push(str);
document.getElementById("wrapper").innerHTML += "<a href = '" + apiUrl[i] + "' target = '_blank'><div class = 'row' id = 'channel" + i + "'><h4>" + users[i] + "</h4><p>dummy text</p></div><a/>";
}
}
$.getJSON(str, function(data) {
console.log(data);
}
cmd+alt+j
document.getElementById("wrapper").innerHTML = "Loading...";
var users, str, apiUrl = [];
users = ["freecodecamp", "storbeck", "terakilobyte", "habathcx","RobotCaleb","thomasballinger","noobs2ninjas","beohoff"];
window.onload = function loadOnStart() {
document.getElementById("wrapper").innerHTML = "";
for (var i = 0; i < users.length; i++) {
(function(i) { // THIS ADDED
str = "https://api.twitch.tv/kraken/streams/" + users[i] + "?callback=myCallback";
apiUrl.push(str);
document.getElementById("wrapper").innerHTML += "<a href = '" + apiUrl[i] + "' target = '_blank'><div class = 'row' id = 'channel" + i + "'><h4>" + users[i] + "</h4><p>dummy text</p></div><a/>";
})(i); // THIS ADDED
}
}
var users, str, online, apiUrl = [];
users = ["freecodecamp", "storbeck", "terakilobyte", "habathcx","RobotCaleb","thomasballinger","noobs2ninjas","beohoff"];
window.onload = function loadOnStart() {
document.getElementById("wrapper").innerHTML = "";
for (var i = 0; i < users.length; i++) {
(function(lockedInIndex){
str = "https://api.twitch.tv/kraken/streams/" + users[lockedInIndex] + "?callback=?";
apiUrl.push(str);
document.getElementById("wrapper").innerHTML += "<a href = '" + apiUrl[lockedInIndex] + "' target = '_blank'><div class = 'row' id = 'channel" + lockedInIndex + "'><h4>" + users[lockedInIndex] + "</h4><p>dummy text</p></div><a/>";
console.log("YEAH" + lockedInIndex);
$.getJSON(str, function(data) {
console.log(data);
online = Boolean(data.stream);
if (online) {
document.getElementById("wrapper").innerHTML += "<br>Online";
} else {
document.getElementById("wrapper").innerHTML += "<br>Offline";
}
})
})(i);
}
}
(function(i){
...
})(i);
var users, str, online, apiUrl = [];
users = ["freecodecamp", "storbeck", "terakilobyte", "habathcx","RobotCaleb","thomasballinger","noobs2ninjas","beohoff"];
window.onload = function loadOnStart() {
document.getElementById("wrapper").innerHTML = "";
for (var i = 0; i < users.length; i++) {
(function(i){ //IIFE
str = "https://api.twitch.tv/kraken/streams/" + users[i] + "?callback=?";
apiUrl.push(str);
document.getElementById("wrapper").innerHTML += "<a href = '" + apiUrl[i] + "' target = '_blank'><div class = 'row' id = 'channel" + i + "'><h4>" + users[i] + "</h4><p>dummy text</p></div><a/>";
console.log("YEAH" + i);
$.getJSON(str, function(data) {
console.log(data);
online = Boolean(data.stream);
if (online) {
document.getElementById("wrapper").innerHTML += "<br>Online";
} else {
document.getElementById("wrapper").innerHTML += "<br>Offline";
}
})
})(i); //IIFE
}
}
pedronfigueiredo sends brownie points to @h4r1m4u :sparkles: :thumbsup: :sparkles:
:star: 1431 | @h4r1m4u | http://www.freecodecamp.com/h4r1m4u
callback=?
into the URL as one of the parameters
https://en.wikipedia.org//w/api.php?callback=?&action=query&format=json&list=search&utf8=1&srsearch=c&srnamespace=0&srwhat=text&srprop=snippet%7Ctitlesnippet&c
pedronfigueiredo sends brownie points to @h4r1m4u :sparkles: :thumbsup: :sparkles:
:warning: pedronfigueiredo already gave h4r1m4u points
rune-jacobsen sends brownie points to @h4r1m4u :sparkles: :thumbsup: :sparkles:
:star: 1432 | @h4r1m4u | http://www.freecodecamp.com/h4r1m4u
rune-jacobsen sends brownie points to @pedronfigueiredo and @h4r1m4u :sparkles: :thumbsup: :sparkles:
:warning: rune-jacobsen already gave h4r1m4u points
:star: 301 | @pedronfigueiredo | http://www.freecodecamp.com/pedronfigueiredo
rune-jacobsen sends brownie points to @h4r1m4u :sparkles: :thumbsup: :sparkles:
:warning: rune-jacobsen already gave h4r1m4u points
pedronfigueiredo sends brownie points to @h4r1m4u :sparkles: :thumbsup: :sparkles:
:warning: pedronfigueiredo already gave h4r1m4u points
otmeek sends brownie points to @alexgaudiosi :sparkles: :thumbsup: :sparkles:
:star: 10 | @alexgaudiosi | http://www.freecodecamp.com/alexgaudiosi
.doughnut {
background-color:red;
border-radius: 150px 0 0;
height:150px;
width:150px;
}
otmeek sends brownie points to @alexgaudiosi :sparkles: :thumbsup: :sparkles:
:warning: otmeek already gave alexgaudiosi points
//api.openweathermap/etc etc
http://api.openweathermap.org/data/2.5/weather?q=London&appid=44db6a862fba0b067b1930da0d769e98
//api.etc
)
leprekon91 sends brownie points to @coira :sparkles: :thumbsup: :sparkles:
:star: 486 | @coira | http://www.freecodecamp.com/coira
#about img {
border:5px solid green;
width: 100%;
}
.hover-me:hover{
box-shadow:0 0 10px 9px gray;
max-width:220px;
max-height:215px;
position:relative;
top:10px;
z-index:1;
}
.hover-me:hover img,.hover-me:hover p{
box-shadow:0 0 10px 9px gray;
max-width:220px;
max-height:215px;
position:relative;
top:10px;
z-index:1;
}
.hover-me img {
}
img
is a child of .hover-me
silentarrowz sends brownie points to @alexgaudiosi and @alexgaudiosi :sparkles: :thumbsup: :sparkles:
:star: 11 | @alexgaudiosi | http://www.freecodecamp.com/alexgaudiosi
:star: 11 | @alexgaudiosi | http://www.freecodecamp.com/alexgaudiosi
gonxaoro sends brownie points to @coira :sparkles: :thumbsup: :sparkles:
:star: 487 | @coira | http://www.freecodecamp.com/coira
dhoover1 sends brownie points to @dickfink :sparkles: :thumbsup: :sparkles:
:star: 176 | @dickfink | http://www.freecodecamp.com/dickfink
dhoover1 sends brownie points to @jamesgraham10 :sparkles: :thumbsup: :sparkles:
:star: 132 | @jamesgraham10 | http://www.freecodecamp.com/jamesgraham10
otmeek sends brownie points to @alexgaudiosi :sparkles: :thumbsup: :sparkles:
:star: 12 | @alexgaudiosi | http://www.freecodecamp.com/alexgaudiosi
$( document ).ready(function() {
console.log( "ready!" );
});
eval()
handles it :smile:
eval()
is evil
getLocation();
showPosition();
getData();
jerlich97 sends brownie points to @nickeu :sparkles: :thumbsup: :sparkles:
:star: 374 | @nickeu | http://www.freecodecamp.com/nickeu
andrewchar sends brownie points to @alexgaudiosi and @chumswap :sparkles: :thumbsup: :sparkles:
:star: 279 | @chumswap | http://www.freecodecamp.com/chumswap
:star: 13 | @alexgaudiosi | http://www.freecodecamp.com/alexgaudiosi
andrewchar sends brownie points to @chrisamsterdam1986 :sparkles: :thumbsup: :sparkles:
:star: 6 | @chrisamsterdam1986 | http://www.freecodecamp.com/chrisamsterdam1986
andrewchar sends brownie points to @cragsify :sparkles: :thumbsup: :sparkles:
:star: 328 | @cragsify | http://www.freecodecamp.com/cragsify
@andrewchar instead of adding 32 to C * 9 /5 , you are concatenating the value so :
if c = 1,
c*9/5 = 1.8
1.8 + 32 = 1.832
$("#convertBtnF").click(function() {
var farValue = (updateWeather.main.temp * (9 / 5) + 32);
$("#myTemp").text("Temp: " + farValue + "°F");
})
in jQuery when i have something like this
$("#myTemp").text("Temp: " + farValue + "°F");
can i chain stuff after the .text like adding to make it round my number
$("#myTemp").text("Temp: " + Math.round(farValue) + "°F");
andrewchar sends brownie points to @wearenotgroot and @cragsify :sparkles: :thumbsup: :sparkles:
:warning: andrewchar already gave cragsify points
:star: 893 | @wearenotgroot | http://www.freecodecamp.com/wearenotgroot
$(document).ready(function(){
$.getJSON( "https://en.wikipedia.org/w/api.php?action=query&format=json&formatversion=2&prop=extracts&titles=Stack+Overflow&exintro=1", function( data ) {
console.log(data);
});
});
can someone please explain why this isn't working:
gsnead sends brownie points to @chumswap :sparkles: :thumbsup: :sparkles:
:star: 280 | @chumswap | http://www.freecodecamp.com/chumswap
@jnmorse wait wait wait, hold on, I just found something interesting. I opened Developer tools in chrome, here's what it said about my request on codepen:
XMLHttpRequest cannot load http://quotesondesign.com/wp-json/posts. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://s.codepen.io' is therefore not allowed access.
Any idea what that means?
[{"ID":2379,"title":"Ricardo Zea","content":"
Learning Web Design is like playing video games: You start small and build your character as you progress, then you beat the boss, literally.
\n","link":"http://quotesondesign.com/ricardo-zea/","custom_meta":{"Source":"tweet"}}]
valmunos sends brownie points to @jnmorse and @andrewchar :sparkles: :thumbsup: :sparkles:
:star: 398 | @jnmorse | http://www.freecodecamp.com/jnmorse
:star: 292 | @andrewchar | http://www.freecodecamp.com/andrewchar
jamesthemonkeh sends brownie points to @chumswap :sparkles: :thumbsup: :sparkles:
:star: 281 | @chumswap | http://www.freecodecamp.com/chumswap
hajeansonne sends brownie points to @jnmorse :sparkles: :thumbsup: :sparkles:
:star: 399 | @jnmorse | http://www.freecodecamp.com/jnmorse
@hajeansonne you could remove them now, as to how to make your links, link to content further down the page you would do something like this
<a href="#section1">Section 1</a>
<!--- any other content in between -->
<div id="section1">
<!-- Some content -->
</div>
You see that both the text after # and the id on the div match, this means when you click the link that id becomes the focus
dhoover1 sends brownie points to @chumswap :sparkles: :thumbsup: :sparkles:
:star: 282 | @chumswap | http://www.freecodecamp.com/chumswap
erbastian sends brownie points to @cragsify :sparkles: :thumbsup: :sparkles:
:star: 334 | @cragsify | http://www.freecodecamp.com/cragsify
jamesthemonkeh sends brownie points to @coymeetsworld and @tommygebru :sparkles: :thumbsup: :sparkles:
:star: 626 | @tommygebru | http://www.freecodecamp.com/tommygebru
:star: 272 | @coymeetsworld | http://www.freecodecamp.com/coymeetsworld