.one()
JQ Home <<
Events <<
.one()
One time only event handler attachment.
Description
The .one()
method is used to attach an event handler for the given event type(s) that will execute a maximum of one times, optionally passing a selector and/or an object of data.
- The
.one()
method is identical to the.on()
method but will execute a maximum of one times and then unattach itself. Use the.on()
method when you require mutiple event handler executions that stay attached. - See the description for the
.on()
method for details of jQuery eventing.
Syntax
Signature | Description |
---|---|
.one( events [, selector] [, data], handler(eventObject) ) | Attach event handlers for the given String of event type(s), optionally passing a selector and/or an object of data. |
.one( events [, selector] [, data] ) | Attach event handlers for the given PlainObject of event type(s), optionally passing a selector and/or an object of data. |
Parameters
Parameter | Description | Type |
---|---|---|
events | A String or PlainObject containing one or more DOM event types or custom event names.
| String or PlainObject |
selector | A string containing a CSS or custom jQuery selector to filter the elements that trigger the events.
| String |
data | An object or map of key-value pair data which can be any type. If this optional parameter is provided and is not null or
undefined , it will be passed to the event handler via Event.data property when the event occurs.
| Anything |
handler( eventObject [, Anything extraParameter ] [, ... ] ) | A function to execute each time the event is triggered or false . | Function |
events | An object of key-value pair data of event type(s) and handlers. | PlainObject |
Return
A jQuery
object.
.one(events[,selector] [,data], handler(eventObject [, Anything extraParameter ] [, ... ] )
Examples Events << Top
Attach an event handler for the given String
of event type(s) that will execute a maximum of one times ( direct event handler).
When we press the mouse button the click
JavaScript event is fired and we output a message.
$(function(){
$('#btn4').one('click', function(){
$('#scrollspan1').append('** The JavaScript "click" event triggered for button **');
});
});
We will show a message here for the mouse button presses.
Attach an event handler for the given String
of event type(s) that will execute a maximum of one times, passing a selector ( delegated event handler).
When we press the mouse button the click
JavaScript event is fired for the specified selector and we output a message.
$(function(){
$('form').one('click', '#btn5', function(){
$('#scrollspan2').append('** The JavaScript "click" event triggered for button **');
});
});
We will show a message here for mouse button presses.
Attach an event handler for the given String
of event type(s) that will execute a maximum of one times, passing a selector and an object of data ( delegated event handler).
In the next example we use all of the .one()
methods parameters and pass an object of data to the addText()
function, which outputs a message below.
What we are doing here is passing across the event
object to the function addText(event)
. The object map we specify, in our case { param1: '#scrollspan3', param2: 'click was attached from .one()', param3: '**JavaScript event triggered** ' }
gets tagged onto the Event.data
property. We then access these parameter in the function via event.data.param
and use it as part of the appended data.
$(function(){
$('form').one('click', '#btn6',
{ param1: '#scrollspan3', param2: 'click was attached from .one() ',
param3: '**JavaScript event triggered** ' }, addText);
function addText(event) {
$(event.data.param1).append( event.data.param2 + '<code>' + event.data.param3+ '</code>');
}
});
We will show a message here.
In the next example we use all of the .one()
methods parameters and pass a custom jQuery.Event
object (ourEvent) to
the addText()
function, which outputs a message below.
What we are doing here is passing across our custom event
object to the function addText(event)
. The parameters we specified for our custom event object get tagged onto the
event.data
property. We then access these parameters in the function and use it as part of the appended data.
This is a cleaner approach than passing a map of data as in the previous example. Imagine what the passed parameter code would look like when you were passing across many parameters. Also think about maintainability and how this approach makes maintaining the code much easier.
$(function(){
var ourEvent = $.Event('click.ns1');
ourEvent.param1 = '#scrollspan4';
ourEvent.param2 = 'click was attached from .one() ';
ourEvent.param3 = '**JavaScript event triggered** using custom object and namespace ';
$('form').one('click.ns1', '#btn7', ourEvent, addText);
function addText(event) {
$(event.data.param1).append( event.data.param2 + '<code>' + event.data.param3+ '</code>');
}
});
We will show a message here.
.one( events [, selector] [, data] )
Examples Events << Top
Attach a PlainObject
of event type(s) and handlers that will execute a maximum of one times ( direct event handler).
In the example below when you press the left mouse button down or release the left mouse button while the cursor is over the 'div4' element the mousedown
and mouseup
JavaScript events fire once.
$(function(){
$('#div4').one({
'mousedown.ns4': function() {
$(this).css({backgroundColor: 'orange', color: 'black'})
.append('**mousedown "div4. "');
},
'mouseup.ns4': function() {
$(this).css({backgroundColor: 'red', color: 'white'})
.append('**mouseup "div4. "');
}
});
});
Some initial text.
Attach a PlainObject
of event type(s) and handlers that will execute a maximum of one times, passing a selector ( delegated event handler).
In the example below when you press the left mouse button down or release the left mouse button while the cursor is over the 'para1' element the mousedown
and mouseup
JavaScript events fire once only. When this happens our custom event-types and their handlers are executed.
$(function(){
$('#div5').one({'mousedown.ns5': ourHandler1}, '#para1');
$('#div5').one({'mouseup.ns5': ourHandler2}, '#para1');
function ourHandler1() {
$(this).css({backgroundColor: 'yellow', color: 'black'})
.append('**mousedown "div5. "');
}
function ourHandler2() {
$(this).css({backgroundColor: 'teal', color: 'white'})
.append('**mouseup "div5. "');
}
});
para1. Some initial text.
Attach a PlainObject
of event type(s) and handlers that will execute a maximum of one times, passing a selector and a map of data ( delegated event handler).
In the example when you press the left mouse button down or release the left mouse button while the cursor is over the 'para2' element the mousedown
and mouseup
JavaScript events fire once only. When this happens our custom event-types and their handlers are executed. The parameters we specified get tagged onto the event.data
property. We then access these parameters in the function addText
and output a message.
$(function(){
$('#div6').one({'mousedown.ns6': ourHandler3}, '#para2',
{ param1: '#scrollspan5', param2: 'mousedown was attached from .one() ',
param3: '**JavaScript event triggered** ' });
$('#div6').one({'mouseup.ns6': ourHandler4}, '#para2',
{ param1: '#scrollspan5', param2: 'mouseup was attached from .one() ',
param3: '**JavaScript event triggered** ' });
function ourHandler3(event) {
$(this).css({backgroundColor: 'lime', color: 'black'})
.append('**mousedown "div6. "');
addText(event);
}
function ourHandler4(event) {
$(this).css({backgroundColor: 'silver', color: 'white'})
.append('**mouseup "div6. "');
addText(event);
}
function addText(event) {
$(event.data.param1).append( event.data.param2 + '' + event.data.param3 + '
');
}
});
para2. Some initial text.
We will show a message here.
In the example below when you press the left mouse button down or release the left mouse button while the cursor is over the 'para3' element the mousedown
and mouseup
JavaScript events
fire once only. When this happens our custom event-types and their handlers are executed. We also pass a custom jQuery.event
object (ourEvent2).
What we are doing here is passing across our custom event
object to our handlers, which then gets passed to the addText(event)
function. The parameters we specified for our custom event
object get tagged onto the event.data
property. We then access these parameters in the addText(event)
function and use it as part of the appended data.
This is a cleaner approach than passing a map of data as in the previous example and makes code maintainance much easier.
$(function(){
var ourEvent2 = $.Event('mousedown.ns7 mouseup.ns7');
ourEvent2.param1 = '#scrollspan6';
ourEvent2.param2 = 'events were attached from .one() ';
ourEvent2.param3 = '**JavaScript event triggered** using custom object and namespace ';
$('#div7').one({'mousedown.ns7': ourHandler5}, '#para3', ourEvent2);
$('#div7').one({'mouseup.ns7': ourHandler6}, '#para3', ourEvent2);
function ourHandler5(event) {
$(this).css({backgroundColor: 'lime', color: 'black'})
.append('**mousedown "div7. "'),
addText(event);
}
function ourHandler6(event) {
$(this).css({backgroundColor: 'red', color: 'white'})
.append('**mouseup "div7. "');
addText(event);
}
function addText(event) {
$(event.data.param1).append( event.data.param2 + '' + event.data.param3 + '
');
}
});
para3. Some initial text.
We will show a message here.
Related Tutorials
jQuery Advanced Tutorials - Lesson 4 - Event Handler Attachments