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:<
It's the same as $(this).children('li'). It's basically saying "use this as the context for the selector (> li)".
$(this).children('li')
this
> li