function ImageEffect(){
var _activeImage;
...
JavaScript On jQuery ugly rollover code
by lomax,
September 24, 2010 17:25
(function() {
var elements = {
...
JavaScript On Looks a bit messy
by garreh.myopenid.com,
September 21, 2010 12:45
I do like lomax's way of us...
populateDropDownRanges(); ...
function cancelEvent(e){
if(!e)return;
if(e.preventDefault)e.preventDefault();
...
JavaScript On Prevent Default not working.
by lomax,
September 15, 2010 19:18
It's "doing nothing" becaus...
/** * SVGZoomNPan library 1.0 ...
JavaScript On Event listeners without pas...
by lomax,
September 13, 2010 20:53
The way you've bound the ev...
/** * SVGZoomNPan library 1.0 ...
JavaScript On Event listeners without pas...
by lomax,
September 13, 2010 20:53
The way you've bound the ev...
JavaScript On Sample Twitter Json Response
by leto,
September 09, 2010 21:04
Your laziness and paltry go...
// container = element to put message into
// text = what you want the message to say
function msg(container, text) {
...
JavaScript On Ultra lightweight message &...
by Chris Brandhorst,
September 02, 2010 13:52
Most jQuery functions retur...
// http://github.com/fjakobs/async.js
var async = require("async");
...
JavaScript On Node.js: Calculating total ...
by Fabian Jakobs,
August 27, 2010 07:06
With async.js you can rewri...
var message = XMLHttpRequest.responseText;
message = (message.length > 0) ? (jQuery.parseJSON(message).error || t('messages.oh_no_error') : "";
// http://github.com/creationix/step
var Step = require('step'),
fs = require('fs');
...
JavaScript On Node.js: Calculating total ...
by Tim Caswell,
August 26, 2010 00:04
Use Step and path.exists is...
$(this).siblings('ul').slideToggle(300).end()
.next().toggleClass('closed').end()
.toggleClass('nav_arrow_light_up')
...
JavaScript On Simple jQuery script - Opti...
by arkilus,
August 24, 2010 23:31
Regarding chaining, this sh...
(function () {
function addHeading(obj) {
var objType, h2, text;
...
JavaScript On console.log for ie
by paul.wilkins.myopenid.com,
August 21, 2010 00:16
The major change here is re...
JavaScript On Prevent Default not working.
by Anri,
August 19, 2010 16:55
Hey Jacboc, I tested this i...
<script type="text/javascript">
document.onkeyup = KeyCheck;
function KeyCheck(e){
...
$('.toggle').click(function(){
...
JavaScript On Simple jQuery script - Opti...
by naugtur,
August 04, 2010 11:56
I didn't break it down to s...
<script type="text/javascript">
$(document).ready(function() {
...
<script type="text/javascript">
$(document).ready(function() {
...
JavaScript On JQuery - snippet to select ...
by Dharmang,
August 03, 2010 09:37
I am using value of select ...
function _initCountUpUsers()
{
var totalUsers, ceiling, floot, update;
...
JavaScript On Javascript Loop Refactor
by paul.wilkins.myopenid.com,
August 03, 2010 03:18
You can use clearInterval f...

I would consider this an op...