0

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)

Community
  • 1
  • 1
flint
  • 1

1 Answers1

0

Did you include jQuery before including:

<script type="text/javascript" charset="utf-8" src="../Assets/jquery.blink.min.js"></script>

???

Blinks just fine here ยป

Shef
  • 44,808
  • 15
  • 79
  • 90