Ross
eCreations Staff
Posts: 1,768
|
Post by Ross on Jun 3, 2006 20:27:39 GMT
Global Footer. Rearranges the "Colors" drop down menu when posting so that it is alphabetical <script type="text/javascript"> <!-- /* alphabetize colors by ross of 101support.proboards43.com */ if(document.postForm && document.postForm.color) { var colors = document.postForm.color.options; var color_arr = []; while(colors.item(1)) { color_arr.push([colors.item(1).value, colors.item(1)]); document.postForm.color.removeChild(colors.item(1)); } color_arr.sort(); for(c=0; c<color_arr.length; c++) { document.postForm.color.appendChild(color_arr[c][1]); } } //--> </script>
|
|