-GS-Master
Erfahrenes Mitglied
Joa den Code hatt mir jemand gegen, jetzt möchte ich noch eine funktion hinzufügen, mit der ich Smilies hinzufügen kann, einziges Probem bei der Ganzen Sache ist, das dieses ganze Script mit "prompt arbeitet und ich möchte, dass eben alles gleich erscheint, also die Smilies ( z.b :-| ) naja und der rest eben so genutzt werden kann, dass wenn der Text makiert ist, das auch gleich so wie hier im Forum ist.
functions.js
functions.js
Code:
function formattedtext(format)
{
formattext=prompt("Please enter the text to format.\n["+format+"]xxx[/"+format+"]","");
if ((formattext!="") && (formattext!=null))
{
document.messageform.text.value=document.messageform.text.value+"["+format+"]"+formattext+"[/"+format+"]";
}
}
function urltext()
{
urldescription=prompt("Please enter a description for the URL (optional).","")
if (urldescription!=null)
{
url=prompt("Please enter the URL.","http://");
if ((url!="") && (url!=null))
{
if (urldescription=="")
{
urldescription=url;
}
document.messageform.text.value=document.messageform.text.value+""+urldescription+"";
}
}
}
function colortext(color)
{
formattext=promt("Please enter the text to format.\nxxx","");
if ((formattext!="") && (formattext!=null))
{
document.messageform.text.value=document.messageform.text.value+""+formattext+"";
}
}
Zuletzt bearbeitet: