Contents
jQuery live and die: Main Tips
- The jQuery
.live()
function attached one or more event handlers to selected elements. - To remove these handlers,
.die()
method was used. - Both of these methods were removed in 1.9 version of jQuery. Use .on() and .off() instead.
- Easy to use with a learn-by-doing approach
- Offers quality content
- Gamified in-browser coding experience
- The price matches the quality
- Suitable for learners ranging from beginner to advanced
- Free certificates of completion
- Focused on data science skills
- Flexible learning timetable
- Simplistic design (no unnecessary information)
- High-quality courses (even the free ones)
- Variety of features
- Nanodegree programs
- Suitable for enterprises
- Paid Certificates of completion
- A wide range of learning programs
- University-level courses
- Easy to navigate
- Verified certificates
- Free learning track available
- University-level courses
- Suitable for enterprises
- Verified certificates of completion
Adding Handlers with .live()
The jQuery .live()
method was used to add one or more event handlers to the selected elements.
It had the following syntax:
$("selector").live(event, data, function);
jQuery .live()
method accepted three arguments:
- The type of
event
. - Additional
data
to pass with the function (optional). - The
function
that was executed when the specified event occured.
Note: the jQuery .live() function was deprecated in version 1.7 of jQuery and removed in 1.9. Use .on() instead.
Using .die() to Remove Handlers
The jQuery .die()
removed event handlers added with the .live()
function.
$("div").die();
We introduce the syntax of .die()
function:
$("selector").die(event, function);
It took two parameters:
event
specified a standard JavaScript event or a customjQuery.event
object.function
named a specific handler function to remove (if skipped, all attached handlers were removed).
Note: the jQuery .die() method was deprecated in 1.7 version and removed in 1.9 version. Use .off() instead.