See like here when you click on a smilie it's entered in the textarea for you?
Look here: http://projects.ninty.xenweb.net/guest1.html
How can I make it so the smilies are entered when I click on them, rather than typing them in manually?
something like
<a onclick="insert(':)');">:)</a> <script> function insert(smilie) { document.getElementById('textbox1').value += smilie; } </script>
should work
Thanks, that worked 🙂