Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<html>
<head>
<title>Test Page</title>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#menu').hover(function() {
        $('#gradient').fadeIn('slow');
     }, function() {
        $('#gradient').fadeOut('fast');
    });
}); 
</script>
</head>
<body>
<div id="menu" style="background:red; height:200; width:200px;">
 <input type="file" id="gradient" style="display:none" />
</div>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers