Log In · Register

 
 
Closed TopicStart new topic
Changing the date
RandomHero
post Jul 7 2004, 01:51 PM
Post #1


oh sweet pestilence
******

Group: Member
Posts: 2,251
Joined: Jun 2004
Member No: 22,876



Is there a way to change ex. Monday to Manic Monday, Tuesday to Teriffic Tuesday, and so on...?
 
LatinaLady
post Jul 7 2004, 01:52 PM
Post #2


Look its...
*******

Group: Official Member
Posts: 5,817
Joined: Feb 2004
Member No: 4,767



yes lookin the xanga scripts for the word replacer
 
LiDdLe_TaSh
post Jul 7 2004, 01:56 PM
Post #3


i rock c[ =
*****

Group: Member
Posts: 520
Joined: Jun 2004
Member No: 22,226



Authored by EasterEgg, this script allows you to replace any text to whatever you want.
CODE
<!-- begin code provided by createblog.com -->
<!-- begin code provided by createblog.com -->
<script type="text/javascript">
//
// &copy; EasterEgg, http://www.xanga.com/easteregg
//
// For use at Xanga only.
//
// This script replaces any given word or text fragment with
// whatever you want: new words and fragments, or even HTML!
//
// Actually it's pretty simple: add the words or fragments you
// wish to replace to the array "oldWords" (each word placed
// between double quotation marks, and separated by colons as you
// can see below) and add their replacements to the array "newWords",
// at the same position as the original words in "oldWords".
// The example is pretty self-explaining.
//
// The script is case sensitive, meaning that if you add "something"
// to "oldWords" array it will not recognize "SOMETHING", or "SoMetHInG".
//
// You can adjust the existing arrays in this code as you see fit,
// as long as both arrays keep the same size (same amount of words
// in both arrays), otherwise a script error will occur.
//
// Copy this entire code and paste in the webstats box at your
// Look and Feel page.
//
// You're free to use this script as long as this comment remains intact,
// and as long you won't use it to cripple the comments of your visitors;
// after all, no one likes his/her words getting twisted...
//
function replaceWords()
{
   // ***add the words or fragments you wish to replace below
   var oldWords = new Array(
       "Sites I Read",
       "Publish Comments",
       "add eProps",
       "eprop",
       "eProps",
       "add comments",
       "comment",
       "comments",
       "email it",
       "view entire profile",
       "sign my guestbook",
       "My Blogrings",
       "Posting Calendar",
       "Get Involved!",
       "sign out",
       "Real Name",
       "Birthday",
       "Gender",
       "Location",
       "Website",
       "Email",
       "Stats",
       "Member since");

    // *** add the replacing words or fragments below
   var newWords = new Array(
       "Sites I Read",
       "Publish Comments",
       "add eProps",
       "eprop",
       "eProps",
       "add comments",
       "comment",
       "comments",
       "email it",
       "view entire profile",
       "sign my guestbook",
       "My Blogrings",
       "Posting Calendar",
       "Get Involved!",
       "sign out",
       "Real Name",
       "Birthday",
       "Gender",
       "Location",
       "Website",
       "Email",
       "Stats",
       "Member since");

   allTableData = document.getElementsByTagName('td');
   allTableHeaders = document.getElementsByTagName('th');
       
   var collections = new Array(allTableData,allTableHeaders);
   
   for (var k = 0; k < collections.length; ++k )
   {
       for (var i = 0; i < collections[k].length; ++i )
       {  
           if (collections[k][i].innerHTML.indexOf('TABLE') == -1)
           {
               for ( var n = 0; n < oldWords.length; ++n )
               {
                   var indx = collections[k][i].innerHTML.indexOf(oldWords[n])
                   while (indx != -1)
                   {  
                       var replacement = '';
                       indx = collections[k][i].innerHTML.indexOf(oldWords[n]);
                       replacement = collections[k][i].innerHTML.replace(oldWords[n], newWords[n]);
                       collections[k][i].innerHTML = replacement;
                       break;                    
                   }
               }
           }
       }
   }
}
replaceWords();
</script>
<!-- end code provided by createblog.com -->
<!-- end code provided by createblog.com -->


THANX MICRON!
 
lookitskim
post Jul 7 2004, 01:57 PM
Post #4


I HEART NICHOLAS TSE
******

Group: Official Member
Posts: 2,726
Joined: Apr 2004
Member No: 14,116



This topic was brought many many times.. try doing some searching before posting a question.. If u dont' know how to search.. on the top right of this forum.. u'll see "arcade, live chat, search.. etc." u click on search and type in the word changing dates or w.e. it's not that hard...


like what latinalady said.. look under Xanga scripts replace any text script
 
musicjunkie07
post Jul 8 2004, 02:18 PM
Post #5


Senior Member
***

Group: Member
Posts: 69
Joined: Mar 2004
Member No: 7,859



I tried using the replace text, because I already was using it on my site, yet it didn't do what I wanted it to do. All I want to do with the date is make the letters all lower case. Maybe I'm doing something wrong when I alter the replace text code, please help.
 
lookitskim
post Jul 8 2004, 02:21 PM
Post #6


I HEART NICHOLAS TSE
******

Group: Official Member
Posts: 2,726
Joined: Apr 2004
Member No: 14,116



Ok, here's the one that i'm using, see if that works. The replacer script is case sensitive


CODEBOX: -> right click -> copy/paste
 
musicjunkie07
post Jul 8 2004, 03:58 PM
Post #7


Senior Member
***

Group: Member
Posts: 69
Joined: Mar 2004
Member No: 7,859



thanks, I wonder why it wouldn't work before.
 

Closed TopicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members: