Tagged Questions
The jquery-event-binding tag has no wiki summary.
33
votes
4answers
1k views
jQuery: live() vs delegate()
I'm using jQuery in my web application. While reading its documentation I read about live() and delegate(). Although they have explained both methods, I don't understand the exact difference between ...
11
votes
1answer
3k views
jquery stop child triggering parent event
I have a div which I have attached an onclick event to. in this div is a a tag with a link. when i click the link the onclick event from the div is also triggered. how can i disable this so that if ...
10
votes
3answers
615 views
jQuery event detection - delete input box text with mouse, drag text to input box
I'm able to detect the cut, copy, paste events with the following code
$('#searchInput').bind('cut copy paste', function (e) {
setTimeout("handleMouseEvents();", 10);
});
Is it possible to ...
4
votes
2answers
59 views
Why are my jQuery events not binding properly when in a loop?
I am using the jQuery hotkeys plugin to bind some keypresses to events. I tried to change this to bind looping over an array instead, but it's not working.
var letters = ["a","b","c"];
for (var x in ...
4
votes
3answers
451 views
How all events of dom element can be bind?
How all events of dom element can be bind?
example:
$('#some-el').bind('all events',function(e){
console.log(e.type);
});
Edit:
'all events' - I want to get them by some function and not write ...
4
votes
2answers
105 views
How to delete created element via JQUERY?
$(function(){
var namecounter = 0
$("#getitem").click(function(){
namecounter++
var txtval = $("#txt").val();
...
4
votes
3answers
87 views
Learning JQuery: noob question about button click
I am learning jquery and I am having difficulty to run the following extremely simple code.
My HTML looks like:
<html>
<head>
<title>JQUERY</title>
<script ...
4
votes
2answers
205 views
JQuery cleaning up eventhandlers
I'm an actionscript developer getting into jquery/javascript development. I have a question regarding event handlers and binding/unbinding.
Say for instance that I have for an div with a img element ...
4
votes
3answers
927 views
jQuery live doesn't appear to bind click event
The dynamically added links (classnames .divToggle and .removeDiv) only function if clicked twice the first time. What is preventing them from working properly right away?
...
3
votes
3answers
38 views
jQuery - backup / cache an element's events?
Is there a way to backup all of the events that are set on any given element?
Backstory: I've got some code that shows an absolutely positioned 'popup' of sorts when a user mouses over a certain icon ...
3
votes
1answer
1k views
jQuery event handler queue
Overview of the problem
In jQuery, the order in which you bind a handler is the order in which they will be executed if you are binding to the same element.
For example:
...
2
votes
5answers
53 views
How to attach 'dblclick' to an element but not its descendants?
I have a basic list-item with an embedded list that I'd like to open when I double click anywhere in the li that isn't the embedded ul.
<ul>
<li class="first_level">
<span ...
2
votes
3answers
74 views
jQuery; test for events registered to a given object with .live()
I've tried the answer suggested here, which follows with nearly all answers to similar/duplicate questions. Checking .data('events') simply isn't working, returning undefined for objects I had ...
2
votes
2answers
100 views
Ordering events in jquery
I have a construct like this.......
<div id="right_top_block" class="drop_head">
<div id="right_top_block_head" class="dropper block_head rounded-corner">
Friends
...
2
votes
3answers
1k views
Disable and enable jQuery context menu
I use
$('#test').unbind('click');
to remove the click event on the #test item. How do I make the item clickable again?
Actually I have a table. On click event a context menu appears. But if ...
2
votes
4answers
184 views
What is difference between $(“.anything”).click() and $(“.anything”).bind(click)
What is difference between $(".anything").click() and $(".anything").bind(click)
$(".anything").click(function() {
});
$(".anything").bind('click', function() {
});
2
votes
1answer
1k views
jQuery: How to catch keydown + mouse click event?
I have a div element. I need to catch a mouse click on this div while alt-key (keyCode = 17) is pressed.
Here is what i've got to catch key press:
// Html
<div id="targetDiv">I want to put a ...
2
votes
4answers
3k views
jQuery date picker not persistant after AJAX
So I'm using the jQuery date picker, and it works well. I am using AJAX to go and get some content, obviously when this new content is applied the bind is lost, I learnt about this last week and ...
2
votes
1answer
268 views
Bind an event handler to multiple elements jQuery?
I've done some experimenting, but can't seem to successfully bind one event handler to multiple elements using jQuery. Here's what I've tried:
$('selector1', 'selector2').bind('click', function() {
...
2
votes
2answers
2k views
Bind to jQuery event only for particular elements
I am relatively new to jQuery but the below code seems logical but is not working as I would expect. I am utilizing the Colorbox jQuery plugin.
My intention is to only add a listener for the ...
1
vote
0answers
23 views
jQuery Selectable metaKey event binding not the same as actual key press
I am using the jQuery UI Selectable component. In order to allow multiple selections without holding down control/command I have the following: (from another thread)
...
1
vote
2answers
125 views
How to bind after unbind in jQuery?
I need help with binding back after I unbind an element. Basically, I have three anchor elements, and I want to achieve this:
When one of them is clicked, the other two can't be clicked. Then when ...
1
vote
1answer
37 views
jquery live firing more than once for the same event and element
I am trying to write a generic pagination utility, a very simplified form is this:
Pagin = function(settings){
var prevSelector = settings.prevSelector || 'a[title="Previous"]',
nextSelector ...
1
vote
2answers
52 views
Chicken or the egg event listener situ: jQuery watching for javascript created node?
First of all, i have to use and create this DOM element in a javascript file, I'm stuck with it. I can't do this all in jQuery, which would obvosuly be a lot easier.
In basic terms:
The JS file ...
1
vote
3answers
69 views
jQuery — trigger a live event only once per element on the page?
Here's the scenario
$("p").live('customEvent', function (event, chkSomething){
//this particular custom event works with live
if(chkSomething){
doStuff();
// BUT only per element
...
1
vote
1answer
82 views
Performance penalty for jQuery's live() function
For certain elements, whenever hovering over them I want the elements to get larger and then shrink back down when unhovering. So I simply use $('.elementClass').hover(function() { enlarge(this); }, ...
1
vote
2answers
78 views
Jquery unbind events bound with one()
Is there any method to unbind an event that has been bound with one()? Sort of like unone()
1
vote
1answer
286 views
jQuery 1.6.2 bind no longer functioning with drag events?
I am trying to use .bind() with 'dragenter', 'dragover', and 'drop' so I can drag a file from my desktop to my browser.
Please see attached jsfiddle. http://jsfiddle.net/v82An/23/
$(function(){
...
1
vote
3answers
55 views
Question on jQuery bind()
I have a question regarding the working of jQuery bind..Whenever we use the bind method on any element and write some callback code, does that complete code get executed on the bind event "each time" ...
1
vote
1answer
46 views
Why does jQuery event model does not support event Capture and just supports event bubbling
Why does jQuery event model does not support event Capture and just supports event bubbling?
1
vote
4answers
121 views
mouseenter event called twice even after stopPropagation
I'm new to jquery and am facing now a weird problem. I succeeded to narrow it down to the fact that a mouseenter event is called twice: once for the containing div (this was my intention) and again ...
1
vote
3answers
364 views
Is it possible to bind multiple event handlers to JqGrid events without overwriting previous ones?
For example, I call my default settings on every page load and bind a function to loadComplete to do some basic formatting for my grids.
On some pages, I have additional logic I would like to execute ...
1
vote
2answers
106 views
Need to select all checkboxes and dynamically add specific event handler to each
Given the following repeated markup in a page:
<div>
<input type="checkbox" id="chk1" />
<div id="div1" >
//stuff to toggle
</div>
</div>
...
1
vote
3answers
67 views
Having Problems with $('img').load(function(){something}); in ie and firefox
Here is my code. This centers images vertically with the class productImage. I have a bunch of images within the class. This works fine in chrome. but itermittently in ie and firefox. I can't figure ...
1
vote
2answers
96 views
How to implement event order in parent/child elements using jquery
I have a parent & child elements in my web page where both have separate event handlers defined for them. I have tested in firefox, where the event handler for parent element gets executed first. ...
1
vote
2answers
97 views
Prevent one jQuery Event with another
In order to tidy up my jQuery, I am looking to create a "confirm" class for various elements with event handlers so I can fire off a quick confirmation box so the user can confirm their action.
If ...
1
vote
2answers
207 views
Will JQuery override existing inline event handlers?
I have a site which is built out of many iframes.
I am working on monitoring user activity - like when user clicks or keydown.
This is only to see if user is idle or not.
For this, I am drilling ...
1
vote
2answers
331 views
jQuery bind event listener before another
Using the prettyPhoto plugin to open modal-style content containers, and trying to integrate with Google Analytics' Event Tracking to track when videos get opened.
Trouble is, when I
...
1
vote
0answers
124 views
Jquery Multiple events for form submit not waiting
I have to check unique email ids in my project. for that i am using json and returning the value. it works fine. the code is
$(document).ready(function() {
// Add the page method call as an ...
1
vote
5answers
111 views
Listening and firing events with Javascript and maybe jQuery
In my Javascript and Flex applications, users often perform actions that I want other Javascript code on the page to listen for. For example, if someone adds a friend. I want my Javascript app to ...
1
vote
2answers
120 views
jQuery function called in a .bind click handler is running on document ready
I defined a simple function and attached a "click" handler to a link using .bind().
The function is not running on click - rather, it is running on document ready. Not sure why this is happening.
I ...
1
vote
1answer
67 views
jQuery selectors are ignoring the classes that are manipulated after the page loads
I have some buttons that when clicked, invoke jQuery to remove and replace their class. The jQuery.mouseover event that I want to call is ignoring the manipulated classes, and only obeying the classes ...
1
vote
2answers
1k views
cannot use .bind() to bind hover
I experimenting with jQuery. As I was trying I found out that I can't use hover event with .bind. And I don't know what is wrong.
$(document).ready(function(){
$('.some-class').bind({
hover: ...
1
vote
1answer
195 views
Is there a way to break out of event recursion in jQuery without using a global variable?
I have a form with 2 text inputs and 2 span controls. Normally, when textbox A is changed an event is fired to change span A, and when textbox B is changed, an event is fired to change span B.
...
1
vote
2answers
169 views
bind event on generated element and get its current state
Here is a plug-in that binds a click event on an element, which generates a container with a <textarea> and then i bind a keypress event on this new <textarea>, all is ok, but inside the ...
1
vote
3answers
542 views
Trigger second function in toggle()
Is there a way I can call the second function in toggle(function(){},function(){})
Thanks in advance
1
vote
2answers
605 views
How can I correctly register event handlers for jQuery UI Autocomplete (Combobox) for Ajax submission?
I am trying to get an autocomplete working and making an Ajax form submission on change, and so far the first is working but not the second. I am using jQuery UI Autocomplete with Combobox, ...
1
vote
1answer
576 views
jQuery capture all changes to named input on a form
I'm trying to determine when any of a set of named input/select/radio/checked/hidden fields in a form change.
In particular, I'd like to capture when any changes are made to fields matching jQuery's ...
1
vote
5answers
195 views
jQuery: is element.click(func) or element.attr('onclick','func()') more efficient?
I'm populating a list by cloning elements into it. Then I change attrs to make each item unique. They need to call a function on click, so I'm wondering if it's more efficient to use ...
1
vote
4answers
146 views
How to call regular JS function with params within jQuery?
Is there another way to run a regular JS function with params passed than what I use below ?
It seems redundant use a on-the-way function to do this.
function regularJSfunc(param1,param2) {
// do ...