/ Published in: JavaScript
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<script type="text/javascript"> jQuery(document).ready(function() { jQuery("img").hover( function () { jQuery(this).stop().fadeTo("fast", 0.7); }, function () { jQuery(this).stop().fadeTo("fast", 1); } ); }); </script>