Log In · Register

 
 
Closed TopicStart new topic
eprops question
mslissy83
post Jul 24 2004, 03:21 AM
Post #1


Newbie
*

Group: Member
Posts: 1
Joined: Jul 2004
Member No: 33,746



hey i am new and i got my xanga account earlier this week with the premium service. I was wondering how you get the eprops to say different stuff. I'd appreciate some help!
 
RandomHero
post Jul 24 2004, 03:25 AM
Post #2


oh sweet pestilence
******

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



i found it...

put in website stats

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

wink.gif
 
Caustic
post Jul 24 2004, 04:39 AM
Post #3


rawr
*****

Group: Member
Posts: 947
Joined: Jul 2004
Member No: 26,961



Or you can use this. It replaces link text:

QUOTE
<!-- begin code provided by createblog.com -->
<script language="javascript">
<!--
var links = document.getElementsByTagName ('a');
for (var l = 0; l < links.length; l++) {
str = links[l].innerHTML;
if (str.match (/\d+:\d+ (am|pm)/i)) links[l]
else if (str.match (/eprops/i)) links[l].innerHTML = str.replace (/eprops/i, "cents");
else if (str.match (/eprop/i)) links[l].innerHTML = str.replace (/eprop/i, "cent");
else if (str.match (/comments/i)) links[l].innerHTML = str.replace (/comments/i, "dollars");
else if (str.match (/comment/i)) links[l].innerHTML = str.replace (/comment/i, "dollar");
else if (str.match (/subscribe!/i)) links[l].innerHTML = str.replace (/subscribe!/i, "add me");
else if (str.match (/sign out/i)) links[l].innerHTML = str.replace (/sign out/i, "log out");
}//-->
</script>
<!-- end code provided by createblog.com -->
<!-- end code provided by createblog.com -->
 

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