Fade to random : fadeTo « jQuery « JavaScript DHTML
- JavaScript DHTML
- jQuery
- fadeTo
Fade to random
<html>
<head>
<script type="text/javascript" src="js/jquery-1.3.2.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("div").fadeTo("fast", Math.random());
});
</script>
</head>
<body>
<body>
<div>Click me</div>
</body>
</html>
Related examples in the same category