Skip to content

Instantly share code, notes, and snippets.

@kejyun
Created September 16, 2012 05:38
Show Gist options
  • Save kejyun/3731139 to your computer and use it in GitHub Desktop.
Save kejyun/3731139 to your computer and use it in GitHub Desktop.
使用Jquery移除Hinet空間廣告
<html>
<head>
<title>使用jQuery移除Hinet空間廣告</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script type="text/javascript">
$('document').ready(function(){
$(parent.document).find('frameSet').attr("cols","*,0")
});
</script>
</head>
<body>
使用jQuery移除Hinet空間廣告
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment