I am just starting with jQuery, so be patient. How do I stop this blinking function on attempted window scroll or mouseenter? Thanks in advance!
http://jsfiddle.net/e2s8besv/1/
<p>blink me<p>
<style>p {display:none;}</style>
<script>
(function( $ ) {
$.fn.blink= function(speed) {
$(this).fadeIn(speed).fadeOut(speed).blink(speed);
};
}( jQuery));
$("p").blink(1500);
</script>