1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> <script> $(document).ready(function() { $("#imgDino").hover( function() { $(this).attr("src", "http://lorempixel.com/g/300/200/people"); }, function() { $(this).attr("src", "http://lorempixel.com/g/300/200/animals"); } ); }); </script> <img id="imgDino" src="http://lorempixel.com/g/300/200/animals" /> |
