Log In · Register

 
changing "sites i read" on xanga.., replacing sites i read name to real name
thoughtsofapilip...
post Jan 19 2004, 06:26 PM
Post #1


Newbie
*

Group: Member
Posts: 4
Joined: Jan 2004
Member No: 995



hii! well umm... i've been looking for a xanga script that replaces the xanga name of a person into their real name. haven't found it yet. so if anyone knows the script for it, please reply back!! thanks a lot! -meli happy.gif
 
 
Start new topic
Replies (1 - 10)
*krnxswat*
post Jan 19 2004, 06:33 PM
Post #2





Guest






CODE
<!-- 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(
     "their xanga user name",
     "their xanga user name",
     "their xanga user name",
     "their xanga user name",
     "their xanga user name",
     "their xanga user name",
     "their xanga user name",
     "their xanga user name",);

  // *** add the replacing words or fragments below
 var newWords = new Array(
     "their real name"
     "their real name",
     "their real name",
     "their real name",
     "their real name",
     "their real name",
     "their real name",
     "their real name",
);

 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 -->



You can add more.
Just make sure the name on the top matches with the ones on the bottom.
 
thoughtsofapilip...
post Jan 19 2004, 06:39 PM
Post #3


Newbie
*

Group: Member
Posts: 4
Joined: Jan 2004
Member No: 995



heyy! thanks very much! i appreciate the help! biggrin.gif
 
*krnxswat*
post Jan 19 2004, 06:41 PM
Post #4





Guest






Anytime! happy.gif
 
g u b o
post Jan 19 2004, 07:13 PM
Post #5


Member
**

Group: Member
Posts: 12
Joined: Jan 2004
Member No: 794



wOOo nice
:D
thank youuu
 
thoughtsofapilip...
post Jan 19 2004, 07:27 PM
Post #6


Newbie
*

Group: Member
Posts: 4
Joined: Jan 2004
Member No: 995



CODE
<!-- 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(
    "their xanga user name",
    "their xanga user name",
    "their xanga user name",
    "their xanga user name",
    "their xanga user name",
    "their xanga user name",
    "their xanga user name",
    "their xanga user name",);

 // *** add the replacing words or fragments below
var newWords = new Array(
    "their real name"
    "their real name",
    "their real name",
    "their real name",
    "their real name",
    "their real name",
    "their real name",
    "their real name",
);

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 -->








aww!!! i tried the code out and it doesn't work for me! it leaves me with an error on my page! do you know what might've caused the problem? sorry for bothering you again! wink.gif blink.gif


my xanga site..
 
Fe_LL
post Jan 19 2004, 07:33 PM
Post #7


Senior Member
*****

Group: Member
Posts: 372
Joined: Jan 2004
Member No: 813



It might be because Xanga has changed Sites I read the Subscriptions.. _dry.gif
 
thoughtsofapilip...
post Jan 19 2004, 07:39 PM
Post #8


Newbie
*

Group: Member
Posts: 4
Joined: Jan 2004
Member No: 995



maybee...well thanks to _unsure.gif you too. urrgh! blink.gif biggrin.gif
 
Your_Lord_And_Ma...
post Jan 29 2004, 02:51 PM
Post #9


Horror Punk
***

Group: Member
Posts: 32
Joined: Jan 2004
Member No: 1,596



It doesn't work pinch.gif ..How can you get it to work after Xanga chabged SIR to Subscription? blink.gif
 
chopstix-ninja
post Jan 29 2004, 06:57 PM
Post #10


chopstix-ninja
*****

Group: Member
Posts: 325
Joined: Jan 2004
Member No: 206



these things barely work..
 
Your_Lord_And_Ma...
post Jan 30 2004, 01:52 AM
Post #11


Horror Punk
***

Group: Member
Posts: 32
Joined: Jan 2004
Member No: 1,596



Well..All I have to say is GRR!! pinch.gif *Shakes fist in anger*
 

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