Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 669 Bytes

README.md

File metadata and controls

22 lines (18 loc) · 669 Bytes

anchor.js

This small but might really useful jQuery Plugin brings in an animation to all native section link and smoothly jumps at an element anywhere on your page.

###Demo Check out a short example of the anchor.js:
http://jsfiddle.net/psrRQ/4/

###Installation Just include the anchor.js file and also make sure that jQuery is defined. Then, call DOM elements by using your preferred selector like in the example below.

<script type="text/javascript" src="path/to/your/anchor.js"></script>
<script type="text/javascript">
$(function () {
    $('a[href*=#]').anchor({
        foo: 'bar'
    });
});
</script>