I'm trying to follow the accepted answer here.
My code:
<script type="text/javascript" charset="utf-8" src="../Assets/jquery.blink.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#aaa").blink();
});
</script>
<body><a href="" id="aaa">blinking text</a></body>
Why doesn't this make the link blink? (the .js file is referenced correctly)