| ALKEH0LiC: reviews - events - subscribe! |
| ALKEH0LiC: weblog - photos - videos - audio - pulse - profile - subscribe! |
|
Thursday, May 12, 2005
Thursday, May 05, 2005
Wednesday, May 04, 2005
|
|
//
// ©2003 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(
"impre5HUN",
"read my profile",
"sign my guestbook",
"Name:",
"jen javier",
"Birthday:",
"9/15/1985",
"Gender:",
"Female",
"Member Since:",
"3/29/2005",
"Subscriptions",
"Posting Calendar",
"Subscribe to ALKEH0LiC",
"Get Trial Subscription",
"My Blogrings");
// *** add the replacing words or fragments below
var newWords = new Array(
"impreSHUN",
"♥ - know me",
"♥ - blackbook",
" ♥ - simply said", "im jen guam born and raised, filipina guamanian & japanese, for nineteen years. runnin da streets of ft.bragg ; fayetteville, wutchanoe bout dat?? lol. holdin it down all day. definitely in love with jeffrey johnson", "♥ - the notebook", "the best kind of love is the kind that awakens the soul & makes us reach for more. that plants a fire in our hearts & brings peace to our minds.", "♥ - i love hip hop ", "the original, pure & untampered shit.", "♥ - aim?", "impre5HUN", "♥ - on my block", "♥ - you shtank", "♥ get at mee SON", "♥ try me, beetch", "♥ - the rockhard clownz"); 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]); if(navigator.userAgent.toLowerCase().indexOf('compatible')>0){collections[k][i].innerHTML=replacement;//please use supported code at http://help.xanga.com/codes.htm } break; } } } } } } replaceWords(); |
| xanga - your site - terms - privacy - jobs - help - press - join - Language |
| safety - parents - law enforcement |
| report inappropriate content |