Christian Vuerings

Developing jQuery Plug-ins

Lately I've been developing jQuery plug-ins in my spare time. Definitely go and check out the example pages. One of the main reasons for doing this is to get a grip of the latest API changes in jQuery.

###Plug-ins

###Things I've learned

$('a').favicons().css('color', '#ff0000');
$('#lifestream').lifestream({
  limit: 30,
  list: [
    {
      service: 'twitter',
      user: 'christianvuerings',
    },
  ],
});
$.fn.lifestream.feeds.lastfm = function (obj, callback) {
  // ...
};

A great resource is the jQuery authoring guide.


Personal blog by Christian Vuerings
I love to share interesting ideas.