about prefixes
2 posters
Page 1 of 1
about prefixes
@Ange Tuteur
how can i make each of these prefixes has deference color
i using this JS code
how can i make each of these prefixes has deference color
i using this JS code
- Code:
var prefixes = ["prefix 1","prefix 2"];
var _pm = false;
var chk = false;
function toMenu(a) {
var htmlpre = '<select style="margin-right:5px" id="prefix" size="1"><option value=""> Prefixes </option>';
for (i in a)
htmlpre += '<option value="' + a[i] + '">' + a[i] + '</option>';
htmlpre += '</select>';
return htmlpre;
}
function checkpre(ar, input) {
for (i in ar) {
var p = new RegExp("\" + ar[i], "g");
var title = input.substr(0, input.indexOf(']'));
if (p.test(title)) return ar[i];
}
return "";
}
$(function () {
if (_pm) chk = /\privmsg/.test(location.href);
if (/\/post/.test(location.href) || chk) {
$(toMenu(prefixes)).insertBefore("input[name=subject][type=text]");
var mw = $("#prefix").width() + 5;
$("input[name=subject]").css("width", $("input[name=subject]").width() - mw);
var t = $("[name=subject]").val();
var cur = checkpre(prefixes, t);
if (cur != "") {
$("[value=" + cur + "]").attr("selected", "selected");
$("input[name=subject]").val(t.replace('[' + cur + ']', '').trim());
}
$("input[name=post]").click(function () {
var sub = $("input[name=subject]").val().trim();
if (sub != "" && $("#prefix").val() != "")
$("input[name=subject]").val("[" + $("#prefix").val() + "] " + sub);
});
}
});
Last edited by omarpop23 on Wed 15 Jun - 19:16; edited 1 time in total
Re: about prefixes
Would it not be easier just to use topic icons, like the solved one on the support forum? You can create just text images in different colors.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: about prefixes
i need it text because searching in google be easy when some one writs the title
i cant explain well because my English is very weak sorry
i cant explain well because my English is very weak sorry
Similar topics
» Prefixes don't stay colored.
» Advanced Topic Prefixes
» How do I make prefixes for my forum?
» Change the prefixes by images
» Remove Topic Prefixes
» Advanced Topic Prefixes
» How do I make prefixes for my forum?
» Change the prefixes by images
» Remove Topic Prefixes
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum