Here, just now I've painted for my PDA a javascript page automatizing this thing. It's so good to be a programmer!
<html>
<head>
<script>
function go(form) {
var url = form.url.value;
if(url.substring(0,7) != "http://")
url="http://"+url;
window.location = "http://www.google.com/gwt/n?u="+url;
}
</script>
</head>
<body style="text-align:center">
<form>
<input name="url" type="text"/>
<input type="button" value="go" onclick="go(this.form)"/>
</form>
</body>
</html>
No comments:
Post a Comment