Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
6answers
4k views

jQuery callback on image load (even when the image is cached)

I want to do: $("img").bind('load', function() { // do stuff }); But the load event doesn't fire when the image is loaded from cache. The jQuery docs suggest a plugin to fix this, but it ...
11
votes
3answers
361 views

jQuery .change() event is triggered with .click() in newer versions?

I'm currently upgrading my application to use jQuery 1.6.1 (previously using 1.4.4) and found that now the .click() event automatically triggers a .change() event as well. I created a simple example ...
10
votes
3answers
619 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 ...
10
votes
1answer
243 views

What is the difference between clicking a checkbox and calling its '.click()' function?

Consider the following code: HTML: <input type='checkbox' /> <div>Click here</div> JS: $(function() { $('input').click(function() { ...
8
votes
3answers
1k views

jQuery performance: $('#selector').live() vs manually bind (when working with ajax requests)

When working with content loaded asynchronously is there any difference from a performance point of view between: // .live() $('#mybutton').live('click', function(e){ doSomething(); }); and ...
8
votes
4answers
1k views

Using .one() with .live() jQuery

I was using the .live function $('a.remove_item').live('click',function(e) but I needed to change this to one() to prevent multiple clicks, however when I inject one of these elements after the ...
7
votes
1answer
2k views

Why is the event object different coming from jquery bind vs. addEventListener

Why is it when I use the jQuery bind the event object I get back is different from the event object I get back using addEventListener? The event object resulting from this jQuery bind does not have ...
7
votes
5answers
955 views

jQuery: How to use event.preventDefault() with custom events?

How can I know in my triggering code that preventDefault had been called? $(document).trigger('customEvent', params); if (/* ??? */) doDefaultActions();
7
votes
3answers
5k views

jQuery - Disable Click until all chained animations are complete

Question The solution below is intended to slide down the groupDiv displaying div1 and enough space for div2 to slide in. It's all achieved by chaining the animations on the #Link.Click() element. ...
7
votes
4answers
8k views

How do I ignore mouse events on child elements in jQuery?

I have an unordered list with mouseover and mouseout events attached to the li elements. Each contains a link and there is a bit of padding in the li. When I mouseover the li the mouseover event is ...
6
votes
1answer
72 views

How can I give focus back to object with lower z-index, trying to create a series of transparent divs on top of a map

If I have a parent div that contains a child div on top of it, can I give the parent div the focus without hiding the child div? I am using Google Maps API and would like to draw a grid of ...
6
votes
3answers
254 views

List all live events in jQuery

How could I find in jQuery what events are bound with live for a particular element? Say I have a function, randomFunction, that returns a random function from an array of functions. How can I find ...
6
votes
1answer
85 views

Using the <a> tag as a button without following its link

I use the <a> tag to build buttons. I use JavaScript (jQuery) to implement the behavior. How can I prevent the browser from following a link, while continuing to execute all click() events? ...
6
votes
2answers
2k views

Bind multiple events to jQuery 'live' method

jQuery's 'live' method is unable to handle multiple events. Does anyone know of a good workaround to attach multiple events to a function that polls current and future elements? Or am I stuck using ...
5
votes
1answer
673 views

how does jquery's promise method really work?

I don't really understand this delegate and promise thing. According to the docs, delegate would bind an selector and event to some sort of wrapping container that can be used again at a later time ...
5
votes
1answer
120 views

Determine whether a given JavaScript action has been initiated by user

Is it possible to determine whether a given JavaScript action has been initiated by user? For instance I want to know whether a link was clicked by user or via jQuery fire event method?
5
votes
2answers
453 views

What's a better method for triggering a load() event on cached images?

I'm working on a script that waits for content to load in a hidden div before activating a thumbnail that points to it. $('#preload img:first-child') .bind('load',activateThumb) .each(function(){ ...
5
votes
1answer
3k views

Trigger a keypress/keydown/keyup event in JS/jQuery?

What is the best way to simulate a user entering text in a text input box in JS and/or jQuery? I dont want to actually put text in the input box, I just want to trigger all the event handlers that ...
4
votes
1answer
35 views

Ensure jQuery event handler execution order

I think that event handlers are processed in the order that they are registered. (Is that correct?) If that is the case then if I attach an event handler at the beginning of my script, can I be ...
4
votes
3answers
79 views

How to know what function (or code snippet) is triggered when an event happens?

I learn HTML and CSS by looking at the code on browsers with Firebug tool. If I can't understand what they do, I look up their reference. And I learned a lot. Now I want to learn JavaScript in the ...
4
votes
3answers
140 views

How jquery ui disable default events and define custome events?

How jquery ui disable default events and define custom events? (like disable tab click event and define custom tabselect event) Where can i read about that deeply? Can you give places in jquery ui ...
4
votes
2answers
120 views

Why Paste Event in jquery fires on pre-paste?

Hi allI am trying to make textbox similar to the Twitter, for this i have written code for Word CountUsed Events Change, Keyup and PasteKeyup and Change Events are working fine but paste event is ...
4
votes
4answers
108 views

Enable/Disable events of DOM elements with JS / jQuery

I stuck here with a little problem I have put pretty much time in which is pretty bad compared to its functionality. I have tags in my DOM, and I have been binding several events to them with ...
4
votes
2answers
178 views

how to capture open link in new tab or window using jquery?

Is it possible to capture the right click open in new window/tab or mouse wheel open in new window/tab event using jQuery? UPDATE 1 Here is why I need it. I have codeigniter application which uses ...
4
votes
2answers
35 views

Allow other bound element events to trigger first?

Is there a way to allow other bound events to the same object(ex. textbox) to fire/trigger first? Say 2 events got bound to the same textbox. Both keyup events. In my case there is a plugin binding ...
4
votes
2answers
163 views

How do you log all events fired by an element in jQuery?

I'd like to see all the events fired by an input field as a user interacts with it. This includes stuff like: Clicking on it. Clicking off it. Tabbing into it. Tabbing away from it. Ctrl+C and ...
4
votes
2answers
176 views

jQuery autocomplete

I have an autocomplete text box that needs to respond to 2 events: When the user is done typing something in the text box (I'm currently using focusout to assume when the user is done typing. So, if ...
4
votes
5answers
172 views

Comparing methods of binding mouseleave event along with a mouseenter event in jQuery

I want to trigger an event when my mouse enters a div, and a separate event when it leaves the div using jQuery. I know there are plenty of plugins, code samples, etc. that solve this particular ...
4
votes
3answers
371 views

Applying OOP with jQuery

I'm working with jQuery and trying to apply some basic Javascript OOP principles to a set of functions that control hover behavior. However, I can't figure out how to get the "this" keyword to refer ...
4
votes
3answers
461 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
3answers
620 views

Action on blur except when specific element clicked with jQuery

There are two elements in play: $('#myInput') // an input field for search $('#myList') // a list to display search results I want to hide the list when the input no longer has focus, like so: ...
4
votes
3answers
967 views

How bind the scroll event on a Live()?

A while ago I've solve an issue for someone that wanted his textarea to grow. I've made a function that listens to the scroll and keyup events of the area and recalculates the number of rows. I wanted ...
4
votes
4answers
320 views

jQuery hover not triggered when element is programatically moved under the mouse

I have an image with a hover effect (higher opacity when mouse is over it). It works as desired when the mouse moves in and out. However, the image itself is moving (I'm periodically changing the css ...
4
votes
2answers
359 views

jQuery.data no longer works with window?

I recently upgraded our project's jQuery file from 1.4.2 to 1.4.4 and it appears that as of 1.4.3 the way we have been using jQuery.data has stopped working. We have this code: var events = ...
4
votes
2answers
244 views

run function only if event default is/isn't prevented

Is there a way to run a function only if event.preventDefault() is called on an event (by another unknown function). This is for a jQuery plugin, so I don't have any knowledge of what other parts of ...
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
2answers
161 views

What is the difference between .click(…) and .live('click', …)?

Consider the following code: HTML: <div id='button' class='enabled'>Press here</div> <div id='log'></div> CSS: #button { width: 65px; height: 25px; ...
4
votes
1answer
116 views

how do i implement a jquery background messages?

for example when you get a new badge on stack overflow, you get the notifaction message on the top, telling you have a new badge, it deos that on the backgroung!! is thier a toturial or article that ...
4
votes
1answer
519 views

Order of change/keydown/keypress events in jQuery

I have been investigating event fire order between browsers, because our application is experiencing some unusual behaviour. I have created a little test to see the order of the three events: change, ...
4
votes
2answers
206 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
2answers
5k views

jQuery .focus() and .blur() not working in Chrome or Safari

I am creating a survey form that needs to have each question and set of answers highlighted (by changing the background color) when the user focuses on them. .focus() and .blur() both work in Firefox ...
4
votes
2answers
1k views

Select list value undefined in $(document).ready

I have the following code, which I want to load values on a selection change, and also do the selection load initially (since FF 'saves' the last value of the drop down under certain circumstances). ...
4
votes
3answers
930 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? ...
4
votes
3answers
11k views

jQuery queue events

So what I want to do is to coordinate some effects using jQuery for some AJAX calls that I'm working with. My problem is that the fadeIn for the second div fires at the same time with the fadeOut for ...
3
votes
3answers
41 views

.on() event not firing

Not sure why the following code isn't working. If I change the .on() to .live() it works but live events hang around and since this is something will come on and off the page mmore than once, live ...
3
votes
4answers
107 views

jQuery on not working

I want to attach a event to dynamically created element class.So i used live function but it was not triggered. So checked live function reference ,there i red below notes As of jQuery 1.7, the ...
3
votes
5answers
139 views

jQuery: How to check if the mouse is over an element

I have a deferred function that binds a mouseenter event: $(window).load(function(e) { var $container = $('.container'); $container.mouseenter(function(e) { //do something }); ... }); ...
3
votes
1answer
34 views

Is it possible to catch a JS event for a user who navigates inside of iframe (same domain)?

I have a page that has a number of iframes that load different pages on the same domain. Each iframe has normal pages which have links, forms, etc.. What I need to do is add a piece of JS to the ...
3
votes
2answers
261 views

Scroll Event inside Facebook Canvas Applications

I'm looking to use a LazyLoad technique for images and infinite scroll to load new content into my page. Both these things make use of the $(window).scrollTop() function that inside a Facebook canvas ...
3
votes
1answer
60 views

Should I be using .on() or .click() to attach an event handler?

Assuming I just want to attach a simple click handler to an element, I've always done this: $("#mydiv").click(function() { ... }); Looking at the JQuery docs, it seems that .on() is the ...

1 2 3 4 5 12