Posted in DHTML, HTML, JavaScript on February 12, 2008 | No Comments »
<html><head>
<script type=”text/javascript”>
img2=new Image();img2.src=“landscape3.gif”;
function changeImage(){
document.getElementById(‘myImage’).src=img2.src;}
</script></head><body>
<p>
When you mouse over the image, a new image will appear.</p>
<img id=”myImage” onmouseover=”changeImage()” border=”0″ width=”160″ height=”120″
src=”landscape2.jpg”>
<p>
The new image appears instantly, because your browser has already loaded the image.</p></body></html>
Read Full Post »
Posted in JavaScript, Uncategorized on February 12, 2008 | No Comments »
<%@ Page Language=”C#” AutoEventWireup=”true” CodeFile=”Default.aspx.cs” Inherits=”_Default” %>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”><html xmlns=”http://www.w3.org/1999/xhtml”><head runat=”server”>
<title>Untitled Page</title></head><body>
<form id=”form1″ runat=”server”>
<div>
<script type=”text/javascript”>
var BrowserDetect = {init: function () {
this.browser = this.searchString(this.dataBrowser) || “An unknown browser”;this.version = this.searchVersion(navigator.userAgent)||
this.searchVersion(navigator.appVersion)|| “an unknown version”;
this.OS = this.searchString(this.dataOS) || “an unknown OS”;},
searchString: function (data) {for (var i=0;i<data.length;i++) {
var dataString = data[i].string;var dataProp = [...]
Read Full Post »