Files
EWF/example/SimpleWebServer/webroot/demo1/script.js
2011-07-15 08:15:31 -03:00

12 lines
316 B
JavaScript

$(document).ready(function(){
/* This code is executed after the DOM has been completely loaded */
$('nav a,footer a.up').click(function(e){
// If a link has been clicked, scroll the page to the link's hash target:
$.scrollTo( this.hash || 0, 1500);
e.preventDefault();
});
});