I am adding smilies to my comments
for which i using following code
<span class="smilies" id="angry" title="X-("></span>
where
.smilies{
background: url("../images/smilies-sprite.png");
display: inline-block;
height: 22px;
margin-bottom: -7px;
width: 24px;
}
#angry{
background-position: -70px -10px;
}
I want that when somebody click on id=angry the title attribute of id=angry shell be copied to my comments textarea
<textarea id="comments" name="comments"></textarea>