w3resource

jQuery: Blink text using jQuery

jQuery Practical exercise Part - I : Exercise-6

Blink text using jQuery.

Sample Data :

<body>
<p>jQuery <span class="blink">Exercises</span> and Solution</p>
</body>
	

Sample solution :

HTML Code :

<!DOCTYPE html>
<html>
<head>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
  <meta charset="utf-8">
  <title>Blink text using jQuery</title>
</head>
<body>
  <p>jQuery <span class="blink">Exercises</span> and Solution</p>
</body>
</html>

JavaScript Code :


function blink_text() {
    $('.blink').fadeOut(500);
    $('.blink').fadeIn(500);
}
setInterval(blink_text, 1000);

See the Pen jquery-practical-exercise-6 by w3resource (@w3resource) on CodePen.


Contribute your code and comments through Disqus.

Previous: Fix broken images automatically.
Next: Create a Zebra Stripes table effect.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://www.w3resource.com/jquery-exercises/part1/jquery-practical-exercise-6.php