When I have the following structure:
<div class='message'>
<p>:)</p>
</div>
And I execute:
$('.message').emoticonize();
It doesn't recognize the smiley.
To fix it, i have to add a space in the beginning of sentence:
<div class='message'>
<p> :)</p>
</div>
OR execute:
$('.message p').emoticonize();
Thanks,
Luis