hi am want to put this coding like
when people make new topic then they easly choose bbcode just on click on then same like in this forum
i use ulkoi forum and i dnt have idea for that .......
i want for some bbcode so help me how i put this !
i got this code
and this javascript code
but still not click on my localhost !
now how make this code clikable its unclickable !
when people make new topic then they easly choose bbcode just on click on then same like in this forum
i use ulkoi forum and i dnt have idea for that .......
i want for some bbcode so help me how i put this !
i got this code
PHP Code:
<a onClick="addSmiley('[b][/b]')"><img src='images/bold.gif'></a> <a onClick="addSmiley('[i][/i]')"><img src='images/italic.gif'></a> <a onClick="addSmiley('[u][/u]')"><img src='images/underline.gif'></a> <a onClick="addSmiley('[img][/img]')"><img src='images/img.gif'></a> <a onClick="addSmiley('[url][/url]')"><img src='images/url.gif'></a> <a onClick="addSmiley('[mail][/mail]')"><img src='images/mail.gif'></a><br>
and this javascript code
PHP Code:
<script language="JavaScript" type="text/javascript">
function addSmiley(textToAdd)
{
document.form.post.value += textToAdd;document.form.post.focus();
}
</script>
but still not click on my localhost !
now how make this code clikable its unclickable !
Comment