Tips and Tricks (really
basic ones)
Two files used extensively on this site are:
-
favicon
-
framebreaker script.
The first puts a cute little icon in the browser address
bar (FF & some versions IE), and the second (which should not be necessary
in this day and age) prevents other sites from framing your pages, effectively
stealing both your content and your bandwidth.
Here are the lines which call them:
<link rel="shortcut icon" href="http://www.dropbears.com/favicon.ico">
<script src="http://www.dropbears.com/scripts/framebreaker.js"
type="text/javascript"></script>
Framebreaker.js contains the following:
<!--//
if (top.location!= self.location) {
top.location = self.location.href
}
// -->