Tagged Questions
The addeventlistener tag has no wiki summary.
17
votes
7answers
50k views
Javascript - How to detect if document has loaded (IE 7/Firefox 3)
I want to call a function after a document loads, but the document may or may not have finished loading yet. If it did load, then I can just call the function. If it did NOT load, then I can attach ...
8
votes
3answers
5k views
How to trigger event in javascript
I have attached a event to a text box using addEventListener. It works fine. My problem arouse when i wanted to trigger the event programmatically from another function.
how can i do it?
7
votes
4answers
6k views
MSIE and addEventListener Problem in Javascript?
document.getElementById('container').addEventListener('copy',beforecopy,false );
In Chrome / Safari, the above will run the "beforecopy" function when the content on the page is being copied. MSIE ...
7
votes
3answers
16k views
AS3 - Can I detect change of value of a variable using addEventListener?
Is it possible to use EventListener to Listen to a variable and detect when the value of that variable changes? Thanks.
5
votes
3answers
9k views
Custom event listener on Android app
I need to set up a simple event listener to refresh a listview from once in a while. The problem is I don't know how could I generate an event.
I know that for events like key or button pressing I ...
5
votes
2answers
1k views
AS3 - Event listener that only fires once
I'm looking for a way to add an EventListener which will automatically removes itself after the first time it fires, but I can't figure a way of doing this the way I want to.
I found this function ...
4
votes
1answer
27 views
Can I rely on attach order while handling events?
As far as I remember, in pure W3C event model (that means, using addEventListener), there is no guarantee that event handlers will be invoked in the order the have been attached.
What about jQuery ...
4
votes
1answer
229 views
Correct way to prevent memory leaks on DOM event listener
Some stupid question about DOM, please don't hate me
For some reasons I need to pass an anonymous function to addEventListener (mainly to "pass" context variables) but the listener once called can be ...
4
votes
7answers
3k views
Passing parameters to event listeners / handlers
How do you pass parameters / variables through event listeners? I've overcome this problem fairly effectively using anonymous functions; which is an incredibly simple solution, but at the end of the ...
3
votes
2answers
40 views
mouseChildren = false not working very well for me
Happy new year btw !
I want to separate event handling from a container and it child. So as you can see, my source code is very simple :
package {
import flash.display.Sprite;
import ...
3
votes
3answers
59 views
In Node.js, what's “on”?
In official doc, there is some sample code:
var req = http.request(options, function(res) {
console.log('STATUS: ' + res.statusCode);
console.log('HEADERS: ' + JSON.stringify(res.headers));
...
3
votes
4answers
118 views
Is it possible to create my own event listener list in Java containing multiple listener types?
I'm implementing a client-server system where the client is in a continuous blocking read loop listening for messages from the server. When a message is received I'd like to raise an "event" based on ...
3
votes
2answers
376 views
DOMContentLoaded only once
I'm using this code for firefox extension
1: var Test {
2: f: function() {
3: alert("DOM content loaded");
4: window.removeEventListener("DOMContentLoaded", function(e) { Test.f(); }, false);
...
3
votes
3answers
1k views
javascript listener, “keypress” doesn't detect backspace?
I'm using a keypress listener eg..
addEventListener("keypress", function(event){
}
however, this doesn't seem to detect a backspace which erases text.. is there a different listener I can use ...
3
votes
1answer
735 views
How do I add and remove an event listener using a function with parameters?
Sorry if this is a common question, but I couldn't find any answers that seemed pertinent through searching.
If I attach an event listener like this:
window.addEventListener('scroll', function() { ...
3
votes
2answers
4k views
Trouble using Titanium's webview to fire an API event
I'm trying to fire an event from an external HTML page opened inside of Titanium's webview.
app.js file...
var group, now, tab, view, window;
now = new Date();
view = ...
2
votes
0answers
24 views
Event Flow between Siblings Objects in Flex
I have a menubar and a custom component in my main application in Flex. On clicking a menu item in the menubar, I need a custom event to be raised which could be listened by the custom component as ...
2
votes
4answers
134 views
Event Listener valid for HTML5 forms
New on HTML5 there's an "invalid" event, to which you can add a listener:
document.addEventListener('invalid', function(e){
var element = $(e.target);
element.addClass("invalid");
...
2
votes
1answer
441 views
Have any browsers implemented the DOM3 EventListenerList?
The answer was no back in March 2010:
Browser EventListenerList Implementation
I'm wondering if there's been any progress since then.
If the answer's still no ... any indication of when any browser ...
2
votes
3answers
103 views
Listen to multiple keydowns
I'm trying to let a user move an element on the page using the arrow keys. So far, I have movement working for up/down/left/right, but not for diagonal (two arrow keys pressed simultaneously).
My ...
2
votes
2answers
141 views
Disable arrow keys from scrolling only when user is interacting with <canvas>
I have added an event listener in JS to listen for keyup/keydown events, I am attempting to move a sprite across the HTML canvas. I have that mostly working, but the page is being scrolled when the ...
2
votes
1answer
36 views
Recalculating absolute positioned elements position?
I have some elements positioned absolutely, relative to document body.
When something is appended, somewhere inside DOM, then absolute positioned elements should be repositioned as well.
The ...
2
votes
3answers
289 views
addEventListener in internet explorer
What is to Equivalent the Element Object in Internet explorer 9?
if (!Element.prototype.addEventListener) {
Element.prototype.addEventListener = function() { .. }
}
How do this work in ...
2
votes
3answers
230 views
How can I execute EventListener 'click' from JavaScript
I have event listener myObject.addEventListener('click',this.doSomething,false) on element.
It works fine when I do mouse click but I cannot figure out how to trigger click from JavaScript. It seems ...
2
votes
2answers
265 views
mootools - using addEvent to element not working properly?
bangin' my head against this and it's starting to hurt.
I'm having trouble with adding an event to an element.
I'm able to add the event, and then call it immediately with element.fireEvent('click'), ...
2
votes
3answers
434 views
Retrieve and Modify content of an XMLHttpRequest
I am working on a browser plugin for Firefox, Safari, Chrome that will intercept data on the page, run it against a regex and then if it matches - reformat it. I have this working on page load using:
...
2
votes
1answer
344 views
Flex 3: looping through repeater items after they've been created… how can i get x, y, width, ect
I have an application that 1) loads an xml, 2) uses a repeater (named projectRP) to create children based on how many "project" tags are in the XML file. Once a project is created, there are two ...
2
votes
2answers
298 views
how addEventListener influences the onclick property of DOM element?
element.onclick = function() { alert(1); }
alert(element.onclick);
The above code will output function () { alert(1); }
Then I continue to execute the following code:
...
2
votes
3answers
237 views
NHibernate Multiple Event Listeners
Is it possible to register multiple event listeners?
We currently register event listeners using .ExposeConfiguration(AddSoftDelete) in which AddSoftDelete is a class registering the listener;
...
2
votes
1answer
430 views
Passing parameters in addEventListener
I am working on a Firefox extension, and I am trying to pass a parameter to addEventListener. I am "listening" for changes in the page title, my code looks something like this:
function Test()
{
...
2
votes
3answers
1k views
why could a check if (document.addEventListener) returns false
on what basis does a check if (document.addEventListener) return false and is there a way we can change this ?
2
votes
2answers
161 views
Flash, ActionScript 3: how do you give a the EventListener a function With parameters?
I am trying to to attach a function with parameters to the timer but it says "unrelated type function" is there any way to get around this??
code example:
var redoTimer:Timer = new Timer(50);
...
2
votes
2answers
1k views
HTML5 / JS storage event handler
I'm using safari webkit's engine together with HTML5 and JS to create an offline application now I'm using the sessionStorage array to store status of my application(simulation).
the storage data ...
2
votes
3answers
89 views
Why can't I add an event to each element in a collection that refers to Itself rather than the last element in the “for(){}” statement
On Window's load, every DD element inside Quote_App should have an onCLick event appended that triggers the function Lorem, however, Lorem returns the nodeName and Id of the last element in the For ...
2
votes
1answer
179 views
How to attach a listener to an object that takes parameters and returns a value in JavaScript?
I can see how to attach an event to an object that has no parameters and no return value but how to modify the code below to attach a listener that takes parameters and returns a value?
function ...
2
votes
2answers
3k views
Combining URLRequest, URLLoader and Complete Event Listener In Actionscript 3.0?
when handling data, i always have to write the following:
var dataSourceRequest:URLRequest = new URLRequest("/path/file.xml");
var dataSourceLoader:URLLoader = new URLLoader(dataSourceRequest);
...
2
votes
2answers
2k views
Tween multiple filters Actionscript 3
I have a circular graphic that has 7 images on it. It needs to spin and stop on the next/previous image. It should spin through more than the 50deg required to get to the next/prev image so I added ...
2
votes
1answer
743 views
XUL attaching events to anchors added with javascript
I'm writing a firefox extension that adds event listeners to all the anchor tags on a page. Essentially I have:
window.addEventListener("load", function() { myExtension.init(); }, false);
var ...
1
vote
2answers
39 views
Using BOTH Href & click listener
I've got a browser plug-in I'm working on and I want it to behave a certain way when the user clicks things. Not limited to, but including, a behavior for links!
The problem is that the plug-in has ...
1
vote
3answers
48 views
Add events to new nodes
I have been trying to add click events to a series of divs using a for loop. The divs are dynamically created and loaded. Every div is supposed to call its own callback function. But it seems every ...
1
vote
1answer
28 views
JavaScript display coordinates of mouse click more than once
I am just learning JavaScript at the moment and I have been able to write an event handler for when a user clicks on the document that will output the mouse clicks coordinates.
However the problem I ...
1
vote
1answer
39 views
Remove a selectionlistener from a table
I am working on a program that uses two tables. The first table has a selection listener that add new items to the second table. Depending on the value of the first table, I want another selection ...
1
vote
1answer
43 views
Can't pass event to addEventListener: closure issue
This one's driving me crazy... I have a loop which adds an event listener to an SVG object. The object is, for the sake of argument, a small circle, and I have to add mouseover and mouseout events for ...
1
vote
1answer
33 views
Remove multiple rows in a single pass in JTable AbstractDataModel
i've got an issue with Jtable and my dataModel.
My table model extends AbstracttableModel, the datas are stored in a Vector.
I'have a function witch is suppose to remove one or more row.
These rows ...
1
vote
1answer
46 views
When is remove_at event in Google Maps API v3 triggered?
I am working on google map api v3 and want to add a feature of editing the polyline. As of the google documentation. There are 3 events fired when a polyline is in edit mode.
insert_at
set_at
...
1
vote
2answers
47 views
how to listen for clicks in Java (JFreeChart) using events?
This is the code I'm currently using:
@Override
public void mouseExited(MouseEvent e) {
System.out.println("detectado");
}
1
vote
0answers
89 views
Nested Javascript addEventListener is not functioning correctly on mobile web app
I am making a simple mobile web app that has a rotating menu that rotates using a combination of Javascript and CSS3 transforms. I managed to get the desired effect working perfectly in chrome and ...
1
vote
1answer
41 views
addEventListener: How to access event
I have two questions for the following example:
function doIt(){
this.attribute = someValue; // Works as expected
alert(event.which); // Doesn't work
}
...
1
vote
2answers
98 views
how to intercept innerHTML changes in javascript?
I need to intercept any changes in the content of a cell inside my webpage.
The following code shows me that addEventListener does not work.
function modifyText() {
alert("!");
}
var ...
1
vote
2answers
40 views
Does Opera capture events by default and what is the correct behaviour?
I had some event code which failed in Opera and I have stripped it down to this small testcase.
Basically the problem is that the event handler doesn't run in Opera if the third parameter of ...