Tag Archives: jQuery

br-jquery: a jquery package for the browserify javascript packager for node.js

I published a node.js package to npm called br-jquery, which contains jQuery and provides an alternate path to downloading jQuery and putting it in a repository when starting a jQuery project. It is a lot like jquery-browserify, but it contains … Continue reading

Posted in uncategorized | Tagged , , , | Leave a comment

jQuery 1.7.0 is out!

…and I like the new .on() and .off() API for setting up events. I wrote some code that uses it, just for practice. Nothing too fancy.

Posted in uncategorized | Tagged , , | Comments Off

jQuery UI widgets

JavaScript is a prototyping programming language, and as such, has many different ways to define classes or create objects. If you try to search for a tutorial on object-oriented programming in JavaScript, you’ll find that each tutorial has its own … Continue reading

Posted in uncategorized | Tagged , , | Comments Off

jQuery example: gather

Here’s an example I whipped together to show some of what I learned from reading about the jQuery Event object. It shows that events can pass data as they bubble up. gather.html – demo (my site) gather.html – demo source … Continue reading

Posted in uncategorized | Tagged , , | Comments Off

jQuery plugin: convenience

jQuery has convenience functions for events like click and keydown, and lets you create and use your own events with bind() and trigger(), but doesn’t provide a way to create your own convenience functions for custom events. I took several … Continue reading

Posted in uncategorized | Tagged , , | Comments Off