Ændre størelse på boks
Hejsa Eksperter,Hvordan ændre jeg breden på .boks til 500px når jeg klikker på jubii?
<html>
<style type="text/css">
body {
margin:0px;
padding:0px;
}
.boks{
position:absolute;
margin:0px;
padding:0px;
height:720px;
width:100px;
background:#cccccc;
border-right: 0px solid #ff0000;
border-bottom: 0px solid #ff0000;
overflow:none;
}
.navigation{
position:absolute;
margin-left:1025px;
padding:0px;
height:720px;
width:100px;
background:#dddddd;
border-right: 0px solid #ff0000;
border-bottom: 0px solid #ff0000;
overflow:none;
}
</style>
<body>
<div class="boks">
<iframe name="pub" src="http://google/" width="100%" height="100%" scrolling="yes" style="overflow-x:hidden;"></iframe>
</div>
<div class="navigation">
<a href="#" onclick="pub.location.href='http://google.dk/'; return false;">Google</a>
<br />
<a href="#" onclick="pub.location.href='http://jubii.dk/'; return false;">Jubii</a>
</div>
</body>
<html>