I'm trying to run certain processes on mousedown anywhere in the document, but different ones depending on whether or not certain elements are clicked. The below code isn't working. Thanks for any help!
$(document).on('mousedown',function(e) {
if (!$(e.target).hasClass('.item')) {
console.log('item');
} else {
console.log('not item);
}
});
I'm trying to run certain processes on mousedown anywhere in the document, but different ones depending on whether or not certain elements are clicked. The below code isn't working. Thanks for any help!
$(document).on('mousedown',function(e) {
if (!$(e.target).hasClass('.item')) {
console.log('item');
} else {
console.log('not item);
}
});
Share
Improve this question
asked Dec 8, 2013 at 3:47
user3011922user3011922
1833 silver badges8 bronze badges
2
-
3
.item
is a selector for theitem
class name. Try!$(e.target).hasClass('item')
. – Thibaud Colas Commented Dec 8, 2013 at 3:49 - 1 What the hell am I thinking? Thanks. – user3011922 Commented Dec 8, 2013 at 3:51
1 Answer
Reset to default 11to hasClass() you should pass the class name, not class selector
$(document).on('mousedown',function(e) {
if (!$(e.target).hasClass('item')) {
console.log('item');
} else {
console.log('not item');
}
});