Essential Javascript Code For Websites
From all the javascript scripts that are used on websites throughout the Internet, only a handleful of them essential code that are recommended to be included on a good website. Below are some javascript scripts which we feel is important to be included on most websites. All the below scripts are compatible with Internet Explorer, Netscape Communicator and Opera.
Bookmark Script
Frames Breaker Script
<script language="JavaScript">
<!--
if (window != top) {
top.location.href = location.href;
}
// -->
</script>
|