Skip to content

Instantly share code, notes, and snippets.

@kevinw
Created June 19, 2009 17:38
Show Gist options
  • Save kevinw/132750 to your computer and use it in GitHub Desktop.
Save kevinw/132750 to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<head>
<link rel=StyleSheet href="feed.css" type="text/css" media=screen>
<script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.js"></script>
<script>
function onclick() {
var childWindow = window.open('about:blank');
$(childWindow).unload(function() {alert('foo');});
}
</script>
</head>
<body>
<a href="javascript:onclick();">click</a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment