SO Answer / jquery tipsy wont work with jquery each

See http://stackoverflow.com/questions/9530882/jquery-tipsy-wont-work-with-jquery-each/9531004

by KooiInc MeHere

HTML

<script src="http://onehackoranother.com/projects/jquery/tipsy/javascripts/jquery.tipsy.js"></script>
<link rel="stylesheet" href="http://onehackoranother.com/projects/jquery/tipsy/stylesheets/tipsy.css">
<a class="tipsy1" href="#" title="Tipsy 1">TipsyLink</a>
<a class="tipsy1" href="#" title="Tipsy 2">TipsyLink</a>
<a class="tipsy1" href="#" title="Tipsy 3">TipsyLink</a>
<br />
<a class="tipsy2" href="#" title="Tipsy 21">TipsyLink</a>
<a class="tipsy2" href="#" title="Tipsy 22">TipsyLink</a>
<a class="tipsy2" href="#">No TipsyLink</a>

<br/>
<span class="some"></span>
<span class="some"></span>
<span class="some"></span>

JavaScript

$(".tipsy1").tipsy({live:true,fade:true});

$(".tipsy2").each( function(i,el){
    el = el || $(this);
    if (el.title){
     $(el).tipsy({fade:true});
    }
});

$.each($('.some'),function(){$(this).html('each works, used jQuery 1.6.4<br />');})