MyBB Community Forums

Full Version: Musicalmmidget Shoutbox Smilies?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey there, I was wondering if there was any way to add smilies to Musicalmidget's Shoutbox.

I tried this code within the form, adding each smilie separately:
<a onClick="send.content.value+='[:)]';return false"><img src="http://nintendoextreme.co.uk/forums/images/smilies/smile.gif" border="0"></a>

and also adding:
name="send"
to
<form method="post" name="send" action="shoutbox.php">

but that never worked.

so, is there a way of adding smilies, either the way I tried or any other way?

maybe you can correct my code Smile

thanks in advance Wink
Your method should be:

<a onClick="send.message.value+='[:)]';return false"><img src="./images/smilies/smile.gif" border="0"></a>

the name of the input field is 'message'; not 'content'.
ahh, right. thanks very much, i'll try that now Toungue