10.穩藏 My Blogrings
<!-- begin code provided by createblog.com -->
<script language="javascript"><!--
// original by sean,
http://www.xanga.com/seanmeister
if (location.href.match ("home.aspx"

) {
var ht = document.getElementsByTagName ('table');
for (var t = 0; t < 10; t++) {
str = ht[t].cells[0].innerHTML;
if (!str.match (/改做自己XANGA ID/i) && str.match (/(My Blogrings)/i)) ht[t].style.display = "none";
}
}
//--></script>
<!-- end code provided by createblog.com -->
11.工具列走字
放在 website states
<script language="javascript">
/*
Flash Bottom Title // Single Message
Created & Fixed to work in XANGA
by xanga.com/dorischu
*/
<!--
st=setTimeout
var msg="Welcome to my Xanga"; // TEXT HERE
var interval = 250; // speed
seq = 0;
function Scroll() {
len = msg.length;
window.status = msg.substring(0, seq+1);
seq++;
if ( seq >= len ) { seq = 0 };
window.st("Scroll();", interval );
}
-->
</script>
<body onLoad="Scroll();">
12.ScrollBar 搬去左邊
擺係 Custom Header
<body ONCONTEXTMENU="return false" dir="rtl"><DIV DIR="LTR">
13.日記每板三篇
<!-- begin code provided by createblog.com -->
<script>
// display three entries
// by markiscool for createblog.com
if(location.pathname=="/home.aspx"

{
var longer = false;
var tds = document.getElementsByTagName('td');
for(i=0; i<tds.length;i++)
{
booga = tds.innerHTML.indexOf('blogheader');
if(booga==11){longer=false;break;}
boogie = tds.innerHTML.indexOf('javascript');
if(boogie == 19){longer=true;break;}
}
var tables = tds.getElementsByTagName('table');
var numBreaks = 0;
var x = 0;
if(longer==true){x=5}else{x=3}
for(j=x; j<tables.length;j++)
{
numBreaks += tables[j].getElementsByTagName('br').length;
tables[j].style.display='none';
}
var divs = tds.getElementsByTagName('div');
for(j=2+(2*2)-0; j<divs.length;j++)
{
divs[j].style.display='none';
}
var breaks = tds.getElementsByTagName('br');
for(j=breaks.length-5-numBreaks;j<breaks.length;j++)
{
breaks[j].style.display='none';
}
var horizontals = tds.getElementsByTagName('hr');
var j = horizontals.length-1;
horizontals[j].style.display='none';
}
</script>
<!-- end code provided by createblog.com -->
14.改 comments 等字句
http://help.xanga.com/replacelinks.htm
15.加圖片
<!-- begin code provided by createblog.com -->
<!-- Comments, Eprops, and Email It Envelope Script by Sherrys_Designs-->
<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 (/eprop/i)) links[l].innerHTML = str.replace (/eprop/i, "<img src=圖片網址border='0'>"

;
else if (str.match (/comment/i)) links[l].innerHTML = str.replace (/comment/i, "<img src=圖片網址border='0'>"

;
else if (str.match (/email it/i)) links[l].innerHTML = str.replace (/email it/i, "<img src=圖片網址border='0'>"

;
}//-->
</script>
16.Profile 相變矇
<!-- begin code provided by createblog.com -->
<style type=text/css>img {FILTER:glow(color=pink)
progid

XImageTransform.Microsoft.Alpha( Opacity=90, FinishOpacity=1, style=3, StartX=0,
FinishX=100, StartY=0, FinishY=100)}p table {background:transparent;filter:Alpha(opacity=90)}
</style>
<!-- end code provided by createblog.com -->
17.鎖滑鼠右鍵及 HighLight
<body onselectstart="return false;" ondragstart="return false;" oncontextmenu="return false;">
18.滑鼠變十字線
<script language="javascript1.2">
if (document.all&&!window.print){leftright.style.width=document.body.clientWidth-2
topdown.style.height=document.body.clientHeight-2
}else if (document.layers){
document.leftright.clip.width=window.innerWidth
document.leftright.clip.height=1
document.topdown.clip.width=1
document.topdown.clip.height=window.innerHeight
}function followmouse1(){//move cross engine for IE 4+
leftright.style.pixelTop=document.body.scrollTop+event.clientY+1
topdown.style.pixelTop=document.body.scrollTop
if (event.clientX<document.body.clientWidth-2)
topdown.style.pixelLeft=document.body.scrollLeft+event.clientX+1
else
topdown.style.pixelLeft=document.body.clientWidth-2
}function followmouse2(e){
//move cross engine for NS 4+
document.leftright.top=e.y+1
document.topdown.top=pageYOffset
document.topdown.left=e.x+1
}if (document.all)document.onmousemove=followmouse1
else if (document.layers){window.captureEvents(Event.MOUSEMOVE)
window.onmousemove=followmouse2}function regenerate(){window.location.reload()}function regenerate2(){setTimeout("window.onresize=regenerate",400)}if ((document.all&&!window.print)||document.layers)//if the user is using IE 4 or NS 4, both NOT IE 5+
window.onload=regenerate2
</script><style>#leftright, #topdown{position:absolute;
left:0;top:0;width:1px;height:1px;layer-background-color:no;
background-color:white;
z-index:100;font-size:1px;}</style><div id="leftright" style="width:expression(document.body.clientWidth-2)"></div><div id="topdown" style="height:expression(document.body.clientHeight-2)"></div>
19.自設網頁名
<body ONDRAGSTART="window.event.returnvalue=false" ONCONTEXTMENU="window.event.returnvalue=false" onSelectStart="event.returnvalue=false" >
<script language=javascript >
title_new="修改網頁名"
step=0
function flash_title()
{
step++
if (step==7) {step=1}
if (step==1) {document.title=' '+title_new+' '}
if (step==2) {document.title=' '+title_new+' '}
if (step==3) {document.title=' '+title_new+' '}
if (step==4) {document.title=' '+title_new+' '}
if (step==5) {document.title=' '+title_new+' '}
if (step==6) {document.title=' '+title_new+' '}
}
flash_title()
</script>