Google came out with a new logo a couple minutes ago and its very very laggy on my computer. I want to keep using the current google style but without the logo. The current id of the logo element is 'hplogo'. So I made a web page that contains google in a iframe and I want to remove that element using jquery.
<head>
<script src="jquery.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#google").height($(window).height());
setTimeout(function(){
$("#google").contents().find("#hplogo").remove());
}, 3000);
});
</script>
</head>
<body style="margin:0px;">
<iframe id="google" style="border:none;width:100%;overflow:auto;" src="http://www.google.com/">
</iframe>
</body>
</html>
I believe that its not working because its not the same domain. Is there a way around this?