|
| Hi Html-ee's,
I've been getting some unthankful email from anonymous people. Which makes me feel like i should quit. Which is why I am doing this: I hereby "giveup" at html. Since some people keep ( In my words ) talkin' shit. Sorry to all the other great people that I have helped. | | |
| No Highlighting:
Highlight Refresh
<body onselectstart="location=self.location;return false">
Highlight w/e Popup
<body ONCONTEXTMENU="alert(&# "MESSAGE HERE" `); return false;">
No Highlighting
<BODY ONCONTEXTMENU="return false">
Comments: I don't usually prefer to use these, but some people want it. | | |
| Marquees:
Up and Down
<MARQUEE behavior=alternate direction=up scrollAmount=3 width="80" height="20">text here</MARQUEE>
Ex:
Left or Right
<MARQUEE direction="left" width="80">text here</MARQUEE>
Ex:
Random
<marquee behavior=alternate><marquee width="100">Text Here</marquee></marquee>
Ex:
| | |
| Xanga Link Replace:
<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" );
// *** add the replacing words or fragments below var newWords = new Array( "Dailies:", "Gender:", "B-Day:", "Recommended Sites", "cent", "dollar" );
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>
Note: You have to change the new words in the order as the old words. | | |
| Scrollbar:
Scrollbar Color
<style type="text/css"> body {scrollbar-3dlight-color:; scrollbar-arrow-color:; scrollbar-track-color:; scrollbar-darkshadow-color:; scrollbar-face-color:; scrollbar-highlight-color:; scrollbar-shadow-color:} </style>
Scrollbar w/ Cursor Change
<STYLE TYPE="text/css"><!--BODY {color: black;cursor: sw-resize;scrollbar-face-color: white; scrollbar-shadow-color: #999999; scrollbar-highlight-color: white; scrollbar-3dlight-color: #999999; scrollbar-darkshadow-color: white; scrollbar-track-gray: black; scrollbar-arrow-color: #999999;}--></STYLE>
Note: I bolded and underlined the cursor change part, so if you want to change both scrollbar and cursor, here you go.
Cursor Styles
Styles: hand, help, crosshair, text, vertical-text, wait, move, n-resize, s-resize, w-resize, e-resize, nw-resize, sw-resize, se-resize, ne-resize, col-resize, row-resize, all-scroll, no-drop, not-allowed, pointer, auto, default | | |
|