}
}
//
// ?003 EasterEgg, http://www.xanga.com/easteregg
// Changes date text
// For use at Xanga only.
//
// Info at http://dorkette.net
//
function replaceWordsDates()
{
// ***add the Months or Days you wish to replace below
var oldWordsDates = new Array(
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
"Sunday"
);
// *** add the replacing Months or Days below
var newWordsDates = new Array(
"HaPpY nEw YeAr <3",
"lOvE mOuNtH <3",
"sPrInG bReAk <3",
"RaIn <3",
"ScHoOlS oUt <3",
"SuMmEr 1 <3",
"sUmMeR 2<3",
"ScHoOl StArTs <3",
"My BiRfDaY mOuNtH <3",
"HoLoWeEn <3",
"TuRkY mOuNtH <3",
"ChRiStMaS mOuNtH <3",
"marvilous monday",
"teriffic tuesday",
"wonderful wensday",
"trippin thurzday",
"flippin fryday",
"sexy satturday",
"solum sundaay"
);
allDivData = document.getElementsByTagName('div');
var collections = new Array(allDivData);
for (var k = 0; k < collections.length; ++k )
{
for (var i = 0; i < collections[k].length; ++i )
{
if (collections[k][i].innerHTML.indexOf('DIV') == -1)
{
for ( var n = 0; n < oldWordsDates.length; ++n )
{
var indx = collections[k][i].innerHTML.indexOf(oldWordsDates[n])
while (indx != -1)
{
var replacement = '';
indx = collections[k][i].innerHTML.indexOf(oldWordsDates[n]);
replacement = collections[k][i].innerHTML.replace(oldWordsDates[n], newWordsDates[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;
}
}
}
}
}
}
replaceWordsDates();
REFR3SH <3 -
AdD ME <3 -
Y0URS <3 -
L0G iN <3 -
L0G 0UT <3 -
XANGA <3 -
PR0FiLE <3 -
gb0OkiE <3 -
//
// © 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(
"Subscriptions",
"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",
"Name:",
"Birthday:",
"Gender:",
"State:",
"Country:",
"Interests:",
"Expertise:",
"Website",
"Email",
"Member since:");
// *** add the replacing words or fragments below
var newWords = new Array(
"YaLl No YaLl wAnNa..So JuSt Do It",
"I dOnNo WhAt ThIs Is 4",
"GiMmIe SoMe PrOpS",
"PiNk",
"PiNkLaDiEs",
"AdD pInK",
"e-pink-mail",
"pinks",
"SiGn ThE pInK",
"vIeW aLl PiNkS",
"GiMmE Ur JoHn HaNdCoCk",
"My Blogrings",
"tHe WhOlE PiNk",
"Get Involved!",
"DiE PiNk",
"U nO u WaNnA sCrEaM PiNk*",
"GimMe Ur SeLf ON*",
"wHaT tHe HeLl Do U ThInK*",
"DeEp In ThE hEaRt Of*",
"WeEl It AiNt No StAn*",
"My SpArE tImE*",
"DuH wHaT i CaN do",
"ThE sItE",
"PiNk MaIl",
"EvEr 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]);
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();
function CONFIRM() {
if (!confirm("U R NOW IN PINK LAND LOVE IT OR HATE IT I DONT CARE"))
history.go(-1);
return " ";
}
document.writeln(CONFIRM())
|