Nu heb ik dit in mijn script zitten...
logo.js
$(document).ready(function(){
$("img").hover(function(){
$(".logo").animate({width:'250px',height:'250px'}"slow");
});
});
en dit zit in mijn register.php want daar moet hij in.
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link type="image/gif" rel="icon" href="favicon.ico" />
<script type="text/javascript" src="js/logo.js"></script>
<link type="text/css" rel="stylesheet" href="register.css" />
<title>M-Tutorials | Register</title>
</head>
<body>
<div class="register">
<form action="" method="post">
<input class="input_register" type="text" name="username" placeholder="Username" />
<input class="input_register" type="password" name="password" placeholder="Password" />
<input class="input_register" type="password" name="re_password" placeholder="Re-type Password" />
<input class="input_register" type="email" name="email" placeholder="Mail-Adress" />
<input class="input_register" type="email" name="re_email" placeholder="Re-type Mail-Adress" />
<input class="submit_register" type="submit" name="submit_reg" value="Register" />
</form>
<img class="logo" src="images/logo.png" />
</div>
</body>
</html>
Volgens mij include hij hem wel gewoon goed toch?