Line 703: | Line 703: | ||
// Clicking the nodes... again, nothing special ;) | // Clicking the nodes... again, nothing special ;) | ||
$nodes.each( function( index ) { | $nodes.each( function( index ) { | ||
− | var $node1 = $( 'node1' ); | + | var $node1 = $( '#node1' ); |
$node1.click( function() { | $node1.click( function() { | ||
− | $('html, body').animate({ scrollTop: $('titleA').offset().top-70}, 1000 ); | + | $('html, body').animate({ scrollTop: $('#titleA').offset().top-70}, 1000 ); |
}); | }); | ||
$nodes.each( function( index ) { | $nodes.each( function( index ) { | ||
− | var $node2 = $( 'node2' ); | + | var $node2 = $( '#node2' ); |
$node2.click( function() { | $node2.click( function() { | ||
− | $('html, body').animate({ scrollTop: $('titleB').offset().top-70}, 1000 ); | + | $('html, body').animate({ scrollTop: $('#titleB').offset().top-70}, 1000 ); |
}); | }); | ||
$nodes.each( function( index ) { | $nodes.each( function( index ) { | ||
− | var $node3 = $( 'node3' ); | + | var $node3 = $( '#node3' ); |
$node3.click( function() { | $node3.click( function() { | ||
− | $('html, body').animate({ scrollTop: $('titleC').offset().top-70}, 1000 ); | + | $('html, body').animate({ scrollTop: $('#titleC').offset().top-70}, 1000 ); |
}); | }); | ||
$nodes.each( function( index ) { | $nodes.each( function( index ) { | ||
− | var $node4 = $( 'node4' ); | + | var $node4 = $( '#node4' ); |
$node4.click( function() { | $node4.click( function() { | ||
− | $('html, body').animate({ scrollTop: $('titleD').offset().top-70}, 1000 ); | + | $('html, body').animate({ scrollTop: $('#titleD').offset().top-70}, 1000 ); |
}); | }); | ||
$nodes.each( function( index ) { | $nodes.each( function( index ) { | ||
− | var $node5 = $( 'node5' ); | + | var $node5 = $( '#node5' ); |
$node5.click( function() { | $node5.click( function() { | ||
− | $('html, body').animate({ scrollTop: $('titleE').offset().top-70}, 1000 ); | + | $('html, body').animate({ scrollTop: $('#titleE').offset().top-70}, 1000 ); |
}); | }); | ||
$nodes.each( function( index ) { | $nodes.each( function( index ) { | ||
− | var $node6 = $( 'node6' ); | + | var $node6 = $( '#node6' ); |
$node6.click( function() { | $node6.click( function() { | ||
− | $('html, body').animate({ scrollTop: $('titleF').offset().top-70}, 1000 ); | + | $('html, body').animate({ scrollTop: $('#titleF').offset().top-70}, 1000 ); |
}); | }); | ||
$nodes.each( function( index ) { | $nodes.each( function( index ) { | ||
− | var $node7 = $( 'node7' ); | + | var $node7 = $( '#node7' ); |
$node7.click( function() { | $node7.click( function() { | ||
− | $('html, body').animate({ scrollTop: $('titleG').offset().top-70}, 1000 ); | + | $('html, body').animate({ scrollTop: $('#titleG').offset().top-70}, 1000 ); |
}); | }); | ||
}) | }) |
Revision as of 15:45, 19 October 2016