Kann mir jmd die funktion geben um Videos ins Gästebuch einzubinden.?
Beispiel:
HTML Code:
function InsertURL()
{
var url = GetSelectedText(document.posting.p_text);
if (url == "") url = prompt(LangBBCodeURLInput, "http://");
if (url == "") return;
if (url == null) return;
var title = prompt(LangBBCodeTitleInput, "");
if (title == null) return;
if ((url != "") && (title != "")) {
InsertTag("[url=" + url + "]" + title + "[/url]", "", "");
} else {
InsertTag("[url]" + url + "[/url]", "", "");
}
}
Danke






