inherit
2671
0
May 14, 2013 14:40:03 GMT -8
Peter
🐺
10,615
February 2002
peter3
|
Post by Peter on Jun 7, 2005 1:19:18 GMT -8
This will change the skin list in the profile so they are put in alphabetical order. <script type="text/javascript"> <!--
// Alphabetical skin list // Main footer
function sortSkins(){ var iHold = []; var iSkinSel = document.modifyForm.skin; for(s = 0; s < iSkinSel.options.length; s ++){ var fLetter = iSkinSel.options[s].text.substr(0, 1); iHold.push([fLetter.toLowerCase(), iSkinSel.options[s].text, iSkinSel.options[s].value,iSkinSel.options[s].selected]); } iSkinSel.options.length = 0; iHold.sort(); for(h = 0; h < iHold.length; h ++){ iSkinSel.options[iSkinSel.options.length] = new Option(iHold[h][1], iHold[h][2]); iSkinSel.options[iSkinSel.options.length-1].selected= iHold[h][3]; } }
if(location.href.match(/=modifyprofile/) && document.modifyForm){ sortSkins(); }
//--> </script> Main footer
|
|