Sha256: 8a430f78337d8fbbd6dc3381ab785e74d7cd1cf8b282b2a327070d67df6ece84
Contents?: true
Size: 572 Bytes
Versions: 13
Compression:
Stored size: 572 Bytes
Contents
<html> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8"/> <title>with_jquery_animation</title> <style> body { height: 2000px; } </style> </head> <body id="with_animation"> <a href="#" id='scroll'>scroll top 500</a> <script src="/jquery.js" type="text/javascript" charset="utf-8"></script> <script type='text/javascript'> $('#scroll').click(function(e){ e.preventDefault(); $('html, body').animate({ scrollTop: 500 }, 'slow'); }); </script> </body> </html>
Version data entries
13 entries across 8 versions & 2 rubygems