I am learning web programming and still a dummy so please dont be harsh.
My question is I have a page where i have js
</style>
<script type="text/javascript">
window.onload= function(){
window.location = 'http://www.google.com';
};
</script>
my question is, if there any way to modify css of the google.com page so it will look different but functionality remains?
I have no intentions doing it to google, it only for example purpose and theoretical understanding.
I was researching online but have not found anything that would work
tried this
<iframe src="http://www.#"></iframe>
<script>
$(document).ready(function(){
$('iframe').contents().find('#header_container').css('display', none);
</script>