I\'m trying to figure out how this jQuery plugin works: http://codeasily.com/jquery/multi-column-list-with-jquery
In the plugin there is this line at the beginning:<
The 2nd parameter to the jQuery function is the context.
jQuery
jQuery('> li', this)
Is the same as:
jQuery(this).find('> li')