Sha256: 09365d7365b8c0b8daf9640bc2546bc52b1c0a1d880941117278a0833a51274f
Contents?: true
Size: 587 Bytes
Versions: 17
Compression:
Stored size: 587 Bytes
Contents
<!DOCTYPE html> <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
17 entries across 17 versions & 5 rubygems