How can I turn the html below,
<h3>Break me</h3>
to
<h3>
<span class="box-letter">B</span>
<span class="box-letter">r</span>
<span class="box-letter">e</span>
<span class="box-letter">a</span>
<span class="box-letter">k</span>
<span class="box-letter"> </span>
<span class="box-letter">m</span>
<span class="box-letter">e</span>
</h3>
$("h3").text(); that's all I can think of! (feeling ashamed...)
css,
.box-letter {
    display:block;
    clear:both;
    width:50px;
    border:1px solid #000;
    }
Thanks.
 
     
     
     
     
     
    