Passing data to event handler in jQuery04:33

  • 0
Published on March 19, 2017

Link for all dot net and sql server video tutorial playlists

Link for slides, code samples and text version of the video

In this video we will discuss how to pass data to the event handler function in jQuery

The following example,
1. Binds the click event handler to the button using on function
2. We are passing 3 arguments to the on() function
a) The name of the event
b) JSON object that contains data that we want to pass to the event handler
c) Event handler method name
3. In the event handler method (sayHello), we access the data using event object’s data property.

Replace < with LESSTHAN symbol and > with GREATERTHAN symbol

<html>
<head>
<title></title>
<script src=”jquery-1.11.2.js”></script>
<script type=”text/javascript”>
$(document).ready(function () {
$(‘#btnClickMe’).on(‘click’, {
firstName: ‘John’,
lastName: ‘Doe’
}, sayHello);

$(‘#btnClickMe’).on(‘click’, {
firstName: ‘Mary’
}, sayHello);

$(‘#btnClickMe’).on(‘click’, sayHello);

function sayHello(event) {
if (event.data == null) {
alert(‘No name provided’);
}
else {
alert(‘Hello ‘ + event.data.firstName +
(event.data.lastName != null ? ‘ ‘ + event.data.lastName : ”));
}
}
});
</script>
</head>
<body style=”font-family:Arial”>
<input id=”btnClickMe” type=”button” value=”Click Me” />
</body>
</html>

Output :
Hello John Doe
Hello Mary
No name provided

https://cafeadobro.ro/

https://www.stagebox.uk/wp-includes/depo10-bonus10/

depo 25 bonus 25

https://parfumschristianblanc.com/

Enjoyed this video?
"No Thanks. Please Close This Box!"