Ross
eCreations Staff
Posts: 1,768
|
Post by Ross on Sept 15, 2006 9:00:54 GMT
<script type="text/javascript"> <!-- /* add "forum age" to the info center 101support.proboards43.com - ross */
var startDate = ['28','06','2005']; // Forum start date in the form ['day','month','year']
// no need to edit below if(location.href.match(/\.com\/?(index.cgi)?\??(&?action=home)?(#\w+)?$/)) { var td = document.getElementsByTagName('td'); var sta = new Date(); sta.setDate(startDate[0]); sta.setMonth(startDate[1]-1); sta.setYear(startDate[2]); var cur = new Date(); var dif = cur - sta; var totalMonth = 0; var totalYear = 0; var totalDay = Math.floor(dif/(60 * 60 * 24 * 1000)) + 1; while(totalDay > 365) { totalDay -= 365; totalYear++; } while(totalDay > 30) { totalDay -= 30; totalMonth++; } var age = totalDay+' days'; if(totalMonth > 0) age += ', '+ totalMonth +' months'; if(totalYear > 0) age += ', '+ totalYear +' year'; age += '.'; for (i=td.length-1; i>0; i--) { if(td.width == '40%' && td[i-1].width == '60%') { td.firstChild.innerHTML += '<br />Forum Age: '+age; break; } } } //--> </script>Main Footer
|
|
|
Post by micrografix on Oct 1, 2009 7:34:37 GMT
Hello is there any way of using this with "Ultimate Info Center V3" I hate to go sticking this in that code and destroying the board.
|
|