Shah-Toggle-On-Focus
by Md Shah
HTML
<input type='text' />
<br / >
<a id="focusLinkId" href="#">Me<span style="display:none"> Robert Muff</span></a>
<br / >
<input type='text' />
<br / >
<a class="focusLinkClass" href="#">Me<span style="display:none"> Robert Muff</span></a>
<br / >
JavaScript
/*********************** CHOICE 1 *******************/
$('#focusLinkId').focus(function(e){
$(this).find('span').toggle();
});
$('#focusLinkId').blur(function(e){
$(this).find('span').toggle();
});
/*********************** CHOICE 2 *******************/
$('a.focusLinkClass').focus(function(e){
$(this).children('span').toggle();
});
$('a.focusLinkClass').blur(function(e){
$(this).children('span').toggle();
});
/****************************************************/