50 Useful JavaScript and jQuery Techniques and Plugins
“We are regulalry collecting useful JavaScript and jQuery snippets, libraries, articles, tools and resources and present them in compact round-ups here, on Noupe. This time we are again covering some useful JavaScript and jQuery techniques, plugins and tools that may help you improve the user experience for your site.”

50 Useful JavaScript and jQuery Techniques and Plugins

“We are regulalry collecting useful JavaScript and jQuery snippets, libraries, articles, tools and resources and present them in compact round-ups here, on Noupe. This time we are again covering some useful JavaScript and jQuery techniques, plugins and tools that may help you improve the user experience for your site.”

Photo Icon

Ask Nettuts #1: Callbacks, LESS, and Floats

“Today marks the first entry in a new ‘Ask Nettuts’ series. I’m often emailed concerning various web development related questions. Though some are more specific than others, many of these, I’m sure, would appeal to all of our readers. As such, each week or so, we’ll post a new batch of question and answers from the community, in both article and video form, for your convenience.

“This week, we discuss JavaScript callback functions, a LESS compiler, and those tricky CSS floats.”

Video Icon
1 Notes

Quick Tip: Using JSLint

“It’s nothing to be ashamed of: you probably don’t write perfect JavaScript the first time. While debugging JavaScript is usually done manually, today’s quick tip will teach you how to use JSLint, a tool for catching JavaScript bugs. Think of it as spell-check for JavaScript.”

Video Icon

Crockford on JavaScript: The Complete Series

“Douglas Crockford has been well described as the world’s foremost authority on JavaScript. His ‘JavaScript: the Good Parts’ talks have been around for a while, but recently he concluded giving a five-part updated series, entitled Crockford on JavaScript. For any JavaScript developer, these videos are a must read; check them out below!”

Link Icon
2 Notes
Fun with Canvas: Create a Bar Graphing Plugin, Part 2
“In this two-part series, we’ll combine the versatile canvas element with the robust jQuery library to create a bar graphing plugin. In this second part, we are going to convert it in to a jQuery plugin, and then add some eye candy and additional features.”

Fun with Canvas: Create a Bar Graphing Plugin, Part 2

“In this two-part series, we’ll combine the versatile canvas element with the robust jQuery library to create a bar graphing plugin. In this second part, we are going to convert it in to a jQuery plugin, and then add some eye candy and additional features.”

Photo Icon
How To Build a Widget to Display your Buzzing
“A couple months ago, Google released a new Twitter-like service, called Buzz. We can use this service to display our latest buzzes on any site. So, in this tutorial, I’ll guide you through the process of building your own Buzz widget.”

How To Build a Widget to Display your Buzzing

“A couple months ago, Google released a new Twitter-like service, called Buzz. We can use this service to display our latest buzzes on any site. So, in this tutorial, I’ll guide you through the process of building your own Buzz widget.”

Photo Icon
Learning Server-Side JavaScript with Node.js
“Node.js is all the buzz at the moment, and makes creating high performance, real-time web applications easy. It allows JavaScript to be used end to end, both on the server and on the client. This tutorial will walk you through the installation of Node and your first “Hello World” program, to building a scalable streaming Twitter server.”

Learning Server-Side JavaScript with Node.js

Node.js is all the buzz at the moment, and makes creating high performance, real-time web applications easy. It allows JavaScript to be used end to end, both on the server and on the client. This tutorial will walk you through the installation of Node and your first “Hello World” program, to building a scalable streaming Twitter server.”

Photo Icon

Douglas Crockford: “Crockford on JavaScript — Act III: Function the Ultimate (73 min.)”

“We’re going to be talking about functions tonight. Functions are the very best part of JavaScript. It’s where most of the power is, it’s where the beauty is. Like everything else in JavaScript, they’re not quite right, but you can work around that, and there’s a lot of good stuff here.”

Video Icon

Quick Tip: Private Variables in JavaScript | Nettuts+

“Because of JavaScript’s dependence upon globals, it might be easy to forget that creating private variables can be accomplished quite simply, thanks to closures. In just a few minutes, I’ll demonstrate two common techniques which allow for private variables and methods in your projects.”

Video Icon

JavaScript shorthand tips and tricks | d'bug

“There is no official ECMAScript or JavaScript language feature called “shorthand”. Developers are responsible for coining the phrase, probably after realizing that terms like Ternary Condition are a bit archaic. The Mozilla Core JavaScript Guide does an excellent job of highlighting many of these shorthand techniques throughout tutorials, but I thought it best to have a definitive list all in one place. If you have others you would like to add, please feel free to comment.

“Boolean shorthand is probably most overlooked by beginners. It is a clean approach, even if you do not get a major decrease in file size. One thing to remember is that the exclamation point questions whether a value is false, not if the current value is the opposite of the initial variable value. This is a common mistake.”

Link Icon