I want to be able to figure out which part of my page has been clicked. There is no guarantee the elements are all on the page from the get go, which means that I need to use something like jQuery delegate.
One way to do this is to iterate through all elements in the DOM and then attach an event handler to each element - but this will be slow and complicated - every time new html is dynamically added, I'd have to either re-attach all the handlers, or figure out the subset of html that was added.
The other way is to use event bubbling - so add an event handler to the document, or body and rely upon the events bubbling up.
Something like this:
$('body').delegate('div', 'click', function(e){
dummyId++;
console.log(e);
console.log(e.currentTarget);
console.log("=====");
});
However, after using this code, when I click on buttons on my page, I get the div surrounding the button, as opposed to the actual button. In other words, the above is too specific. Furthermore, I feel like the original selector should be the document, rather than the body tag.
To be clear, I want to know when any element is clicked on my page - how do I do that?
So I tried this code with .on
:
$(document).on('click', function(e){
console.log("EVENT DUMMY ID");
console.log(e.target);
console.log("=====");
});
However, when I click on buttons in my app, nothing gets triggered - when I click on other elements, the console logs run.
I understand this is probably hard to answer without more context - what else do you need?
I want to be able to figure out which part of my page has been clicked. There is no guarantee the elements are all on the page from the get go, which means that I need to use something like jQuery delegate.
One way to do this is to iterate through all elements in the DOM and then attach an event handler to each element - but this will be slow and complicated - every time new html is dynamically added, I'd have to either re-attach all the handlers, or figure out the subset of html that was added.
The other way is to use event bubbling - so add an event handler to the document, or body and rely upon the events bubbling up.
Something like this:
$('body').delegate('div', 'click', function(e){
dummyId++;
console.log(e);
console.log(e.currentTarget);
console.log("=====");
});
However, after using this code, when I click on buttons on my page, I get the div surrounding the button, as opposed to the actual button. In other words, the above is too specific. Furthermore, I feel like the original selector should be the document, rather than the body tag.
To be clear, I want to know when any element is clicked on my page - how do I do that?
So I tried this code with .on
:
$(document).on('click', function(e){
console.log("EVENT DUMMY ID");
console.log(e.target);
console.log("=====");
});
However, when I click on buttons in my app, nothing gets triggered - when I click on other elements, the console logs run.
I understand this is probably hard to answer without more context - what else do you need?
Share Improve this question edited Aug 22, 2021 at 13:51 Brian Tompsett - 汤莱恩 5,88372 gold badges61 silver badges133 bronze badges asked Mar 27, 2014 at 22:34 praks5432praks5432 7,79232 gold badges93 silver badges158 bronze badges 13 | Show 8 more comments5 Answers
Reset to default 16currentTarget
returns the node to which the event has bubbled (if at all). Instead, interrogate target
, so:
Vanilla:
document.addEventListener('click', function(evt) {
alert(evt.target.tagName);
}, false);
jQuery:
$(document).on('click', function(evt) {
alert(evt.target.tagName);
});
http://jsfiddle.net/qsbdr/
Just Do this:
var listener = function handleClick(event){
element = event.target
console.log(element)
}
var body = document.body
body.addEventListener('click', listener, true);
This will print the element clicked on the DOM.
I faced the same type of problem to find out which element is clicked on the navbar. I was working in animation slide. So, To solve it, I try to handling all the events of <ul>
TO BE NOTED: This is just for a piece of block. Not entire webpage.
Here is my reactjs code. Concept is same.
jsx
<ul className="right" onClick={setRainbow}>
<li><Link to="/">Home</Link></li>
<li><NavLink to="/about">About</NavLink></li>
<li><NavLink to="/contact">Contact</NavLink></li>
</ul>
function
const setRainbow = (e) => {
console.log(e.target)
console.log(e.target.href)
console.log(e.target.text)
if (e.target.text === 'About') {
// to do
} else {
// to do
}
}
Try this:
$(document).on('click', function(e) {
// now use e.target here
});
You can also kill the bubbling on the click event by using e.stopPropagation()
I don't see any need to use jQuery for something like this, though my suggestion does rely on MutationEvents, which I understand are to be replaced.
You can get notified upon the insertion of any new node into the DOM. In the callback that fires, you can trivially attach an onclick handler to the new node. I've only handled the case where new nodes are added.
<!DOCTYPE html>
<html>
<head>
<script>
window.addEventListener('load', onDocLoaded, false);
function onDocLoaded()
{
window.addEventListener('DOMNodeInserted', onNodeInserted, false);
document.body.appendChild( newEl('div') );
}
function onNodeInserted(evt)
{
evt.srcElement.addEventListener('click', onNodeClicked, false);
}
function onNodeClicked()
{
document.body.appendChild( newEl('div') );
}
</script>
<style>
div
{
border: solid 1px red;
padding: 8px;
margin: 4px;
display: inline-block;
}
</style>
</head>
<body>
</body>
</html>
document
, and check thee.target
. That'll be the most deeply clicked element.$(document).on("click", function(e) { console.log(e.target.nodeName); })
– cookie monster Commented Mar 27, 2014 at 22:35