Friday, October 24, 2014

adding (link) JavaScript


  • EXTRNAL: 

<!DOCTYPE html>
<html>
<head>
</head>
<body>

<script src="js/menu.js">
</script>

</body>
</html>





















  • INTERNAL 

<!DOCTYPE html>
<html>
<head>
</head>
<body>

<script>

jQuery(document).ready(function($) {
      $('a').smoothScroll({
        speed: 1000,
        easing: 'easeInOutCubic'
      });

</script>

</body>
</html>

No comments:

Post a Comment