Created
September 16, 2012 05:38
-
-
Save kejyun/3731139 to your computer and use it in GitHub Desktop.
使用Jquery移除Hinet空間廣告
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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