Code: Select all
www.google.com
Code: Select all
Enter the URL
http://
Code: Select all
www.google.com
Code: Select all
Enter link text
http://www.google.com
Code: Select all
[url]www.google.com[/url]
Code: Select all
[url="http://www.google.com"]www.google.com[/url]
Code: Select all
if (bbnumber == 14)
{
var img = prompt('Enter the image URL' , 'http://');
bbfontstyle(bbtags[bbnumber], bbtags[bbnumber+1], img);
}
Code: Select all
function bbfontstyle(bbopen, bbclose, URL, linktext, img)
Code: Select all
if (img)
{
insert_text(bbopen + img + bbclose);
}
Code: Select all
[url=http://www.google.com/intl/en_ALL/images/logo.gif]undefined[/img][img][/img]
Code: Select all
if (bbnumber == 16)
{
var URL = prompt('Enter the URL' , 'http://');
var linktext = prompt('Enter link text' , URL.replace("http://", ""));
bbfontstyle(bbtags[bbnumber], bbtags[bbnumber+1], URL, linktext);
}
Code: Select all
else if (bbnumber == 14)
{
var IMG = prompt('Enter Image URL' , 'http://');
bbfontstyle(bbtags[bbnumber], bbtags[bbnumber+1], null, null, IMG);
}
Code: Select all
function bbfontstyle(bbopen, bbclose, URL, linktext)
Code: Select all
function bbfontstyle(bbopen, bbclose, URL, linktext, IMG)
Code: Select all
if (URL)
{
insert_text("[url=" + URL + "]" + linktext + bbclose);
}
Code: Select all
else if (IMG)
{
insert_text(bbopen + IMG + bbclose);
}