Help
-
Search
-
Members
-
Calendar
Full Version:
next and previous links
Forums
>
Resource Center
>
Support Center
>
Xanga Support
>
Xanga Resolved Topics
chelsea00
Jan 23 2005, 10:39 AM
hey guys.. i was wondering how do you get the "next" and "previous" links down at the bottem changed to my own custom words?
--thanks
CKae
Jan 23 2005, 10:52 AM
Use the following script:
<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 (/next 5/i)) links[l].innerHTML = str.replace (/next 5/i, "Change this 2 your custom next 5");
else if (str.match (/previous 5/i)) links[l].innerHTML = str.replace (/previous 5/i, "Change this 2 your custom previous 5");
}//-->
</script>
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please
click here
.