I was working on a button that when you click gives a propt box to insert image dir but on my way i made this little thing i ope it helps anyone in their shoutbox or guestbook. add the following to the head of the html page
HTML Code:
<script type="text/javascript">
<!--
function addpic(smili)
{
var original = document.form.msg.value;
this.smili = smili;
document.form.msg.value = original + smili;
}
//-->
</script> use this form. keep the names of form objects as they are.
HTML Code:
<form name="form">
<textarea name="msg" cols="50" rows="10"></textarea>
</form>
to add the clickable images and links use this
HTML Code:
<img src="images/smilies/smile.gif" alt="Smile" width="50" height="50" style="cursor:pointer;border:0" onClick="addpic(':)')">
<a href="#" onClick="addpic(':)')" >:)</a>