Skip to content

Instantly share code, notes, and snippets.

View myslivets's full-sized avatar
🏠
Working from home

Daniel myslivets

🏠
Working from home
View GitHub Profile
@fuhoi
fuhoi / gist:1050233
Created June 28, 2011 00:48
html-set-homepage
<html>
<head>
<title>JavaScript - Set Homepage</title>
</head>
<body>
<input type="button" value="Set homepage" onclick="setHomepage('http://www.google.com');" />
<script language="javascript">
function setHomepage(url) {
if (document.all) {
document.body.style.behavior='url(#default#homepage)';