In case you want to try it out...
function fade(id) { var dom=document.getElementById(id), level = 1; function step() { var h = level.toString(16); var newColor = '#FFFF' + h + h; dom.style.backgroundColor = newColor; if (level<15) { level += 1; setTimeout(step,100); } } setTimeout(step,100);
}
afasico 1 week ago
What better way to learn the fundamentals of javascript than learning them from the js guru Douglas Crockford.
@Doug, Thanks a lot for that amazing lecture. Really appreciate it.
saip106 1 month ago
too bad it's only in 360p. youtube should ban anything below 480p
hackebeil20 1 month ago
Great lecture! I love his mellifluous voice, it reminds me of James Spader.
Cosmologicon 2 months ago
I can see a Douglas Crockford: Advanced Javascript video but no "Douglas Crockford: Theory of the DOM" video. Does it exist on YouTube?
sqeye 3 months ago
@sqeye I think theory of DOM is same as An inconvenient API
kutchbhi1 3 months ago in playlist javascript
@sqeye It's named 'Douglas Crockford: An Inconvenient API - The Theory of the DOM'
Frodo6432 3 weeks ago
how do I debug javascript? E.g. there must be a toolset? Thanks for any reply!
carterson2 3 months ago
@carterson2 Use the console. Most browsers have built-in consoles. If yours doesn't, you can use Firebug.
JavaScriptGuy 3 months ago
@carterson2 Even Google Chrome web browser supports adding breakpoints in your Javascript code, so it is the most handy tool
sergiuoxigen 3 months ago
Awesome Lecture!!! Loved it!!!
adityavit 4 months ago
Best (only) JS lecture I've ever seen. Beats the JS books on my shelf in first 40min.
Pretty printing!
bashful228 4 months ago
i love Doug.Thanks man
obuseng87 5 months ago
In case you want to try it out...
function fade(id) { var dom=document.getElementById(id), level = 1; function step() { var h = level.toString(16); var newColor = '#FFFF' + h + h; dom.style.backgroundColor = newColor; if (level<15) { level += 1; setTimeout(step,100); } } setTimeout(step,100);
}
afasico 1 week ago
What better way to learn the fundamentals of javascript than learning them from the js guru Douglas Crockford.
@Doug, Thanks a lot for that amazing lecture. Really appreciate it.
saip106 1 month ago
too bad it's only in 360p. youtube should ban anything below 480p
hackebeil20 1 month ago
Great lecture! I love his mellifluous voice, it reminds me of James Spader.
Cosmologicon 2 months ago
I can see a Douglas Crockford: Advanced Javascript video but no "Douglas Crockford: Theory of the DOM" video. Does it exist on YouTube?
sqeye 3 months ago
@sqeye I think theory of DOM is same as An inconvenient API
kutchbhi1 3 months ago in playlist javascript
@sqeye It's named 'Douglas Crockford: An Inconvenient API - The Theory of the DOM'
Frodo6432 3 weeks ago
how do I debug javascript? E.g. there must be a toolset? Thanks for any reply!
carterson2 3 months ago
@carterson2 Use the console. Most browsers have built-in consoles. If yours doesn't, you can use Firebug.
JavaScriptGuy 3 months ago
@carterson2 Even Google Chrome web browser supports adding breakpoints in your Javascript code, so it is the most handy tool
sergiuoxigen 3 months ago
Awesome Lecture!!! Loved it!!!
adityavit 4 months ago
Best (only) JS lecture I've ever seen. Beats the JS books on my shelf in first 40min.
Pretty printing!
bashful228 4 months ago
i love Doug.Thanks man
obuseng87 5 months ago