johnnyderdepp
Mitglied
Hallo !
bin grade am lernen von jquery, nun wollte ich mein erstes snipped "live" testen, aber es funktioniert nicht...
html
css
script.js
bin grade am lernen von jquery, nun wollte ich mein erstes snipped "live" testen, aber es funktioniert nicht...
html
Code:
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css" />
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<div></div>
</body>
</html>
css
Code:
div {
width: 100px;
height: 40px;
text-align: center;
line-height: 40px;
background: #882244;
border: 1px solid #000;
opacity: 0.5;
}
script.js
Code:
$(document).ready(function() {
$('div').mouseenter(function() {
$('div').fadeTo('fast', 0.5);
});
});