[Mr.P]
New member
Preview:
Tác giả: slayer766
Đặt code tại Below The Boards
Cài đặt:
prefixes['FORUM_ID'] = new Array ("Tiền tố 1","Tiền tố #2","Tiền tố ...");
prefixes['FORUM_ID'] = new Array ("Tiền tố 1","Tiền tố #2","Tiền tố ...");
Các bạn thay thể:
FORUM_ID: thanh id chuyên mục muốn có tiền tố
"Tiền tố 1": nội dung tiền tố

Tác giả: slayer766
Đặt code tại Below The Boards
Mã:
<script type="text/javascript">
//Written by slayer766
var prefixes = [];
prefixes['FORUM_ID'] = new Array ("Tiền tố 1","Tiền tố #2","Tiền tố ...");
prefixes['FORUM_ID'] = new Array ("Tiền tố 1","Tiền tố #2","Tiền tố ...");
if(location.href.match(/&f=(.*)/i)){
var forum = RegExp.$1;
var num = 0;
if($("input[name*='title']")){
var info = "<form name='slayer'><select name='rawr'><option value='none'>Select";
for(c in prefixes){
if(forum == c){
for(j=0;j<prefixes[c].length;j++){
info+="<option value='"+num+"'>"+prefixes[c][j];
num++;
}
}
}
}
info+="</select></form> Topic Prefix";
$("input[name*='title']").after(info);
document.forms['posting'].onsubmit=function(){
var a = document.slayer.rawr.selectedIndex;
var dropdownText = document.slayer.rawr.options[a];
if(dropdownText.value != "none"){
document.forms['posting'].title.value="["+dropdownText.text+"] "+document.forms['posting'].title.value;
}
}
}
</script>
prefixes['FORUM_ID'] = new Array ("Tiền tố 1","Tiền tố #2","Tiền tố ...");
prefixes['FORUM_ID'] = new Array ("Tiền tố 1","Tiền tố #2","Tiền tố ...");
Các bạn thay thể:
FORUM_ID: thanh id chuyên mục muốn có tiền tố
"Tiền tố 1": nội dung tiền tố