code to change words in my profile, "name", "state", "gender"...stuff like t |
![]() ![]() |
code to change words in my profile, "name", "state", "gender"...stuff like t |
Jul 15 2004, 11:23 PM
Post
#1
|
|
![]() Newbie ![]() Group: Member Posts: 2 Joined: Jun 2004 Member No: 24,640 |
i was just wondering if anybody had a code i could use to change certain words in my profile without making a custom module for it. all i want to do is change where it says "name", "state", "gender", and all that kinda stuff.
thanks. jennifer xanga |
|
|
|
Jul 15 2004, 11:25 PM
Post
#2
|
|
|
Brie ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 10,172 Joined: Jun 2004 Member No: 20,548 |
Yeah, I've been kinda wondering this, too..
|
|
|
|
Jul 16 2004, 02:24 AM
Post
#3
|
|
![]() Junior Member ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 457 Joined: Jun 2004 Member No: 26,537 |
this is the replacing word script i use on my xanga. the author is noted in the script.
CODE <!-- begin code provided by createblog.com -->
<script type="text/javascript"> // // ©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( "Sites I Read", "Gender:", "Birthday:", "My Blogrings", "eprop", "comment", "Real Name:", "Expertise:", "Location:", "Occupation:", "Industry:", "Hobbies:", "Email:", "Posting Calendar", "sign out", "email it", "Get Involved!", "oldest", "newest" ); // *** add the replacing words or fragments below var newWords = new Array( "replace word here", "replace word here", "replace word here", "replace word here", "replace word here", "replace word here", "replace word here", "replace word here", "replace word here", "replace word here", "replace word here", "replace word here", "replace word here", "replace word here", "replace word here", "replace word here", "replace word here", "replace word here", "replace word here" ); 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 --> |
|
|
|
Jul 16 2004, 09:08 AM
Post
#4
|
|
![]() Look its... ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Member Posts: 5,817 Joined: Feb 2004 Member No: 4,767 |
both of you please look back. this is the script thay many people ask for. LOOK before asking
|
|
|
|
Jul 16 2004, 09:11 AM
Post
#5
|
|
|
Member ![]() ![]() Group: Member Posts: 15 Joined: Jul 2004 Member No: 31,179 |
COOL!
|
|
|
|
![]() ![]() |