<a href="https://www.linkedin.com/in/armaan" class="btn btn-info" role="button"><i class="fa fa-linkedin-square"></i> LinkedIn</a>
shouldn't take me to my linkedin page?
armaanhammer sends brownie points to @owlie :sparkles: :thumbsup: :sparkles:
:cookie: 319 | @owlie |http://www.freecodecamp.com/owlie
owlie sends brownie points to @armaanhammer :sparkles: :thumbsup: :sparkles:
:cookie: 120 | @armaanhammer |http://www.freecodecamp.com/armaanhammer
armaanhammer sends brownie points to @ndburrus :sparkles: :thumbsup: :sparkles:
:star2: 1685 | @ndburrus |http://www.freecodecamp.com/ndburrus
gmiller64 sends brownie points to @coffeebeanzz :sparkles: :thumbsup: :sparkles:
:cookie: 983 | @coffeebeanzz |http://www.freecodecamp.com/coffeebeanzz
gmiller64 sends brownie points to @owlie :sparkles: :thumbsup: :sparkles:
:cookie: 322 | @owlie |http://www.freecodecamp.com/owlie
$("#plus1").click(function() { //Plus (break)
time2+=60;
$("#set2").text(getTime(time2));
}); //Plus Minus for BreakTime
var timeoutId=0;
function increment(){
time2+=60;
$("#set2").text(getTime(time2));
};
$("#plus1").mousedown(function() {
timeoutId= setTimeout(increment, 100);
}).bind('mouseup mouseleave', function() {
clearTimeout(timeoutId);
});
Can you help with my mouse hold increment button?
html += "<div class='stream'>" + streamers[i] + " " + status + "</div>";
does anyone know why this wont output my status variables to html???? it works in the console.log?
2cool4school sends brownie points to @trip16661 :sparkles: :thumbsup: :sparkles:
:cookie: 459 | @trip16661 |http://www.freecodecamp.com/trip16661
$(</div>).addClass('stream').text(streamers[i] + " " + status ).appendTo(".streams");
:warning: 2cool4school already gave trip16661 points
2cool4school sends brownie points to @trip16661 :sparkles: :thumbsup: :sparkles:
$(document).ready()
for (var i=0;
$(document).ready(function() {
//ALL OF YOUR CODE
});
2cool4school sends brownie points to @sorinr :sparkles: :thumbsup: :sparkles:
:cookie: 671 | @sorinr |http://www.freecodecamp.com/sorinr
function monkeyCount(n) {
var arr=[];
for(i=0;i<n;i++){
console.log(i);
arr.push(i);
}
return arr;
}
format
I need some help with the "Show Local Weather" challenge. I can't make it show my location this is my code.
JAVASCRIPT:
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
$(".data").html("latitude: " + position.coords.latitude + "<br>longitude: " + position.coords.longitude);
});
};
HTML:
<p class="data"></p>
it doesn't do anything
text-shadow: 0px 5px 5px rgba(0, 0, 0, 1);
text-shadow: 1px 1px 0px rgba(255, 255, 255, .3);
to make it more readable
beerdrinker sends brownie points to @sorinr :sparkles: :thumbsup: :sparkles:
:cookie: 672 | @sorinr |http://www.freecodecamp.com/sorinr
sleepy-guy sends brownie points to @sjames1958gm :sparkles: :thumbsup: :sparkles:
:star2: 2735 | @sjames1958gm |http://www.freecodecamp.com/sjames1958gm
http://api.openweathermap.org/data/2.5/weather?q=McKinneyUnited%20States&APPID=c852d718fa5a0379cf99144a177b7e74&units=imperial
accimeesterlin sends brownie points to @sjames1958gm :sparkles: :thumbsup: :sparkles:
:star2: 2736 | @sjames1958gm |http://www.freecodecamp.com/sjames1958gm
accimeesterlin sends brownie points to @khaduch :sparkles: :thumbsup: :sparkles:
:star2: 1559 | @khaduch |http://www.freecodecamp.com/khaduch
accimeesterlin sends brownie points to @khaduch :sparkles: :thumbsup: :sparkles:
:warning: accimeesterlin already gave khaduch points
myObj[prop] = []
or myObj[prop] = [value]
contacts[i].tracks = [value]
var location = {}
and then later i re-assign location with json data location = data;
https://api.twitch.tv/kraken/users/brunofind404
and if you get 404 or 402, can't remember, then it's closed.
wbac88 sends brownie points to @pro-mos :sparkles: :thumbsup: :sparkles:
:cookie: 319 | @pro-mos |http://www.freecodecamp.com/pro-mos
vtarun sends brownie points to @sjames1958gm :sparkles: :thumbsup: :sparkles:
:star2: 2739 | @sjames1958gm |http://www.freecodecamp.com/sjames1958gm
wbac88 sends brownie points to @sorinr and @pro-mos :sparkles: :thumbsup: :sparkles:
:warning: wbac88 already gave pro-mos points
:cookie: 673 | @sorinr |http://www.freecodecamp.com/sorinr
var api = "https://api.twitch.tv/kraken/streams?channel=";
to begin my call, plus the channel name. As far as I could see, there wasn't a difference in the result from a closed account vs an offline account
<head>
on codepen its like you're inside a <body>
already
attr
function you must add string elements
$(this).attr(data-name);
doesn't work
$(this).attr('data-name');
data.hasOwnProperty("error")
something like this
channel
info but if there are error there are no channel
:star2: 2744 | @sjames1958gm |http://www.freecodecamp.com/sjames1958gm
hudsontaylor sends brownie points to @sjames1958gm :sparkles: :thumbsup: :sparkles:
else if (result.stream !== null)
followed by `<p>" + result.stream.channel.status + "</p>``
alexanderdom sends brownie points to @sjames1958gm :sparkles: :thumbsup: :sparkles:
:star2: 2746 | @sjames1958gm |http://www.freecodecamp.com/sjames1958gm
wbac88 sends brownie points to @sjames1958gm and @alexanderdom :sparkles: :thumbsup: :sparkles:
:cookie: 340 | @alexanderdom |http://www.freecodecamp.com/alexanderdom
:star2: 2747 | @sjames1958gm |http://www.freecodecamp.com/sjames1958gm