Wednesday, 29 September 2010

QuiBL

Or Quick Back Links : )

javascript:var%20url=location.href;%20var%20word=url.split("/");%20window.open("http://www.opensiteexplorer.org/"%20+%20word[2]%20+%20"/a!links");%20history.go(0)

MoLLY

Or Moneysupermarket Link Locating Yewtility.

Create a new bookmark with the below code in the 'location' field - Allows you to do a quick yahoo search to find if there are any pages on that site that already link to us.

javascript:var%20url=location.href;var%20word=url.split("/");window.open("http://uk.search.yahoo.com/search?vc=&p=site%3A"+word[2]+"+linkdomain%3Amoneysupermarket.com");history.go(0);

Thursday, 23 September 2010

Saturday, 11 September 2010

Monday, 6 September 2010

Length Checker

<head>

<SCRIPT language = JavaScript>



function calculate() {

C = document.frmOne.txtFirstNumber.value

D = C.length

document.frmOne.txtThirdNumber.value = D

}



</SCRIPT>

</head>

<center>

<FORM NAME = frmOne>



Text: <INPUT TYPE = Text NAME = txtFirstNumber SIZE = 100 value ="">



<P>

Length: <INPUT TYPE = Text NAME = txtThirdNumber SIZE = 5 value = "">

<P>

<Input Type = Button NAME = b1 VALUE = "Add Numbers" onClick = calculate()>



</FORM>

</center>