vForums Support > Programming & Coding :: Database of Codes/Hacks/Mods :: > Quick Reply UBBC & Smiley Drop Down
Quick Reply UBBC & Smiley Drop Down - Posted By Michael (wrighty) on 16th Mar 08 at 1:45pm
This will put the UBBC and smilies in the quick reply into drop down boxes.
<script>
/*QR Smiley & UBBC Drop Down.
Coded By Wrighty
No Ripping, Reposting or Claiming*/
function _qr(x,y){
var _a = (x==1)? get('quick_reply_ubbc','id').getElementsByTagName('center')[1] : get('quick_reply_ubbc','id').getElementsByTagName('center')[0];
var w_ub = [];
var c_ub = [];
var i_ub = _a.getElementsByTagName('A');
var d_ub = document.createElement('SELECT');
d_ub.options[0] = new Option(y, null, null, null);
d_ub.onchange = function() {
eval(this.options[this.options.selectedIndex].value);
}
for (i=i_ub.length-1;i>= 0;i--) {
c_ub.push(i_ub[i].getAttribute('onClick'));
w_ub.push(i_ub[i].getElementsByTagName('IMG').item(0).alt) ;
i_ub[i].parentNode.removeChild(i_ub[i]);
}
for (i=0;i<w_ub.length;i++) {
d_ub.options[d_ub.options.length] = new Option(w_ub[i], c_ub[i], null, null);
}
get('quick_reply_ubbc','id').replaceChild(d_ub, _a);
}
if(get('quick_reply_ubbc','id').getElementsByTagName('center')){
_qr(1, 'Smilies');
_qr(0, 'UBBC Tags');
}
</script>
Global Footer