February 2014
Intermediate to advanced
410 pages
8h 15m
English
Using jQuery's effect functions, we can create a blinking button that can be used in a web application or website to draw the user's attention.
Create a blank HTML document named recipe-8.html and ensure you have the latest version of jQuery downloaded and ready to be included in this HTML file.
Learn how jQuery can be used to create a simple blinking button effect by performing the following steps:
recipe-8.html, which you have just created, remembering to update the reference to the jQuery library.<!DOCTYPE html> <html> <head> <script src="jquery.min.js"></script> <script src="recipe-8.js"></script> <title>Chapter 4 :: JQuery Effects :: Recipe 8 </title> <link type="text/css" ...
Read now
Unlock full access