Hi makenzi.exc,
live - This method is used to attach one or more event handlers to the selected element.
$(selector).live(event, function () { });
event: It specifies the event which you want to attach with the selector.
function: It is the function that will be executed when a particular event occurs.
Note: This method is removed in the jQuery 1.9 version, please use the ON method.
bind - This method is also used to attach an event to a selector and specify a function that will be executed when the event occurs. This method works only for the present element.
$(selector).bind(event, function () { });
event: It specifies the event which you want to attach with the selector.
function: It specifies the function which will be executed when the particular event occurs.
Refer below example.
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style type="text/css">
body { font-family: Arial; font-size: 10pt; }
</style>
</head>
<body>
<div id="message1">Welcome to</div>
<hr />
<div id="message2">ASPSnippets</div>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script type="text/javascript">
$(function () {
// jQuery on.
$('#message1').on('click', function () {
$(this).css('color', 'red');
})
// jQuery bind.
$('#message2').bind('click', function () {
$(this).css('color', 'purple');
});
});
</script>
</body>
</html>
Demo
Screenshot

Downloads
Download Sample