What is the difference between .each() and $.each() ?
Hi,
I know the function
$('element').each(), where you can do something like:
- $('li').each(function (){
- $(this).css("color", "red");
- }
but what is $.each() ?
If I wanted to use $.each() for the above code, how could I do it?
Thanks