a DOM event method that adds an event listener to a given DOM node

learn more… | top users | synonyms

0
votes
0answers
11 views

HTML document event listener on iOS receive wrong event target

I'm running the following HTML code which register an event listener on the document element. It should alert the id of the element clicked. It seems that the iOS have a bug. If I click one button ...
0
votes
0answers
11 views

safari mobile bug - event touchstart and hover subclass

I have a menu and a submenu appearing when the mouse is over (with the subclass hover in css). It works very well within all browers including safari mobile. But if I had an handler function on the ...
1
vote
1answer
14 views

Erratic mouseover behavior with nested items inside mouseover layer

So let's say we have: A container for everything A baseDiv inside that container //let's create a base layer var container = document.getElementById('container') var baseDiv = ...
0
votes
0answers
31 views

AS3 AIR - addEventListener that is in effect when the window is not in focus

this is with Flash cs6 trying to make an air app. Hi, I'm fairly sure this is easy to answer when you know the expression. so I want to know how to detect a KEY_DOWN and KEY_UP when the window is ...
0
votes
0answers
21 views

GWT Three.js OBJMTLLoader had no method 'addEventListener'

I work on a GWT project and I want to use Three.js and the OBJMTLLoader. I use three.js example to load an obj in the html file: var loader = new THREE.OBJMTLLoader(); ...
0
votes
1answer
27 views

What javascript objects have addEventlistener in their prototype?

I know of the following: Element.prototype.addEventListener Window.prototype.addEventListener Document.prototype.addEventListener Any others?
0
votes
1answer
25 views

how can i call a method in another class using as3 addevent listener?

I have two classes A main class - Class Game Public Class Game { private var m_navButtons:NavButtons; public function Game( ) { setUpLevelSelect(); } public ...
0
votes
1answer
18 views

How to create a reference to an anonymouse addEventListener handler?

function alertString(str) { alert(str); } var str = "hello"; var alert_string = document.getElementById("alert_str"); // this can be removed with removeEventListener // ...
0
votes
1answer
17 views

addEventListener function doesn't run, and stops rest of Javascript? [closed]

my javascript file won't run, and it stops when it comes to this addEventListener var Fcolour=document.getElementById("colour"); window.alert("Work"); Fcolour.addEventListener('change', ...
0
votes
0answers
24 views

Extremely slow performance of element.addEventListener(“touchstart”)

On Chrome something is seriously wrong with the performance of element.addEventListener("touchstart") in my system, in some cases reaching 100ms for a single call. r00122 listen touchstart: 60.000ms ...
2
votes
1answer
31 views

AS3 - add different event listeners to children or one to the parent?

I have a MC (a button bar) with 4 buttons. is it more efficient to add separate event listeners to each button or to add a single event listener to the parent and use e.target.name to detect which one ...
0
votes
1answer
26 views

as3 declaring an eventListener - variable scope

How do I declare an Event Listener to be public so it's available to all funcitons? // Coded needed below to declare Event function addEventL() { /// Declares it in a function ...
0
votes
3answers
29 views

$ is not defined before DOMContentLoaded - JQuery

the first statement in a js file I have is $(document).on("DOMContentLoaded", function (event) { $(document.body).on('beforeinsert', onBeforeInsert); $(document.body).on('afterinsert', ...
0
votes
1answer
16 views

addEventListener in JS not working as expected

Firstly skim codes please. index.html is : <html><head><title>Home</title><script src="js/script.js"></script></head> <body onLoad="init()"> <ul ...
1
vote
0answers
26 views

PYQT is it possible to connect a listener to an image I printed?

I'm making a map with senors looking like this: The sensors in the code are a class on themselves 'MapNode' and are drawn on the map by the following method: def drawMapNode(self, painter, ...
0
votes
3answers
47 views

Event listener in elements appended after DOM Content Loaded

I need to listen a "change" event of a <select> but this works fine only on the first select, there's a button that adds more <select> to the document, so I need to check if any ...
0
votes
2answers
37 views

Why is the click event not raised?

What is wrong with this code? I tested it in IE10 and Firefox but the click event was not raised. <html> <head> <title>Sandbox</title> <meta ...
0
votes
0answers
19 views

addEventListener click seemingly storing up clicks

I've got some javascript code called from an html page. On the html page, I've got a button with an id "button_id". I want the function DoStuff() to occur when I click the button, and this bit of ...
2
votes
3answers
94 views

Uncaught RangeError: Maximum call stack size exceeded with innerHTML

I'm not very experienced with Javascript, but I'm running into an issue I can't understand. My code is very simple: document.getElementById ('chat_line_list').addEventListener ("DOMSubtreeModified", ...
0
votes
2answers
41 views

removeEventListener not working

function Drag(event:MouseEvent):void { if ((event.target.parent == InventoryMenu) && (event.target is item)) { var picked:item = item(event.target); ...
-2
votes
1answer
35 views

pass variable to addEventListener in javascript

This is my test function function test(MyCard){ alert("clickCard"); //alert MyCard.GetNo(); } And this is how I call it (function(MyCard) { DivCarte.addEventListener("click", ...
0
votes
1answer
51 views

Why doesn't document.addEventListener('load', function) work in a greasemonkey script?

It doesn't give an error, and I put a console.log('loaded userscript wifi-autologin'), the console.log works, but the intended effect of the document.addEventListener doesn't happen. After doing a bit ...
0
votes
2answers
32 views

addEvent doesn't work with chrome 25 and OSX

I've a problem only with chrome 25 and osx. I get results with this line console.log($$('.sort-box-slt-pl-opt')); But with this lines $$('.sort-box-slt-pl-opt').addEvent('click', function(event){ ...
0
votes
1answer
38 views

AS3 Error 1067 (implicit coercion) when trying to addEventListener

So I'm developing a sorting game for a game jam, and my AS3 skills are still a bit unrefined. I have an InputManager.as that determines whether the device is touch-capable or not, and then in the ...
0
votes
1answer
64 views

addEventListener in HTML5 development

As an AS3 developer I am used to this: addEventListener(Event.RESIZE, onResize); I am trying to learn Typescript/JS/HTML5 and I keep seeing all these different ways of doing things. I love this ...
0
votes
1answer
19 views

Pass “this.value” to addEventListener Function

I'm developing a Chrome plugin,The situation is like i have few images like this in option page. <img src="some.jpg" class="same" id="231"> <img src="some.jpg" class="same" id="234"> ...
-1
votes
3answers
47 views

addEventListener calls the function without me even asking it to

So we have a page: <span id='container'> <a href='#' id='first'>First Link</a> <a href='#' id='second'>Second Link</a> </span> And want to add some click ...
2
votes
1answer
67 views

How do multiple addEventListener work in JavaScript?

There are 2 scripts in a document // my_script.js goes first document.onclick = function() { alert("document clicked"); }; // other_script.js comes after // this overrides the onclick of my ...
0
votes
1answer
34 views

IE9 Not allowing inputs within button tags

In Internet Explorer 9, which I understand supports the function addEventListener, is giving me a strange error when I try to use the function here: function addEvent(evnt, elem, func) { if ...
0
votes
0answers
108 views

Changing a global variable in an eventlistener in Corona SDK

I have a "circle" with another circle in it. Both circles have an arrow that the user can drag around them. I'll show it in a picture. I have an eventlistener that takes some parameters so that I can ...
0
votes
0answers
32 views

how to find out the end of mp4 video in an embedded flash player

I am trying to embed flash player in html. How do I find out that the video is done playing? My objective is to play another video after this is over. something like adding eventlistener. <body ...
1
vote
1answer
37 views

Input onkeydown function on auto complete form

Everything in my code works when i press enter on a form, the function executes correctly... However, when i press enter on the auto complete portion of the form, nothing whatsoever happens, and so i ...
0
votes
0answers
24 views

Triggering a CSS animation repeatedly in Firefox

I'm working on a little project of a book made out of divs with some CSS on it. You are suppose to be able to turn the pages repeatedly by clicking them. It works correctly on webkit where I did it ...
0
votes
1answer
86 views

Javascript mouseover Element Flickers & Uncaught TypeError

I am trying to use javaScript mouseover and mousout function to get elements from the DOM. sourced child elements from that event.target and add styling to the childNode that matches the specified ...
0
votes
1answer
74 views

how to monitor text style and format in a contenteditable div?

I have this text editor plunker example the problem is when I click the bold button or any other button the button doesn't show the state of the editable div, I know that could be fixed if I added a ...
3
votes
1answer
57 views

as3 AIR Win- preventing ALT+spacebar in fullscreen windows

I have a local fullscreen AIR app (that loads several SWFs from a server), and I'm trying to use ALT+<letter> as shortcuts. But Windows OS intercepts the ALT key, and for example displays ...
2
votes
3answers
110 views

Javascript: addEventListener not working in a for-loop

SITUATION: I am getting a JSON array from an API. The "div" is from a getElementByID earlier in my code. PROBLEM: the addEventListener only gets attached to the last element in my list. for(var ...
1
vote
1answer
88 views

How to remove event listener from DOM element?

I would like to toggle add/remove event listeners on click. Could someone point out how I could improve my code? I've read a number of answers on Stackoverflow but none have helped me. This is a ...
0
votes
2answers
98 views

Adding multiple event listeners in javascript to element

I've got a small drag and drop set up up and running, but it's using inline javascript and I'd prefer to move it all to an external file. Theoretically it's an easy swap, but I'm getting ...
0
votes
0answers
12 views

addeventlistener does not react

<script> function dora() { var ph = document.getElementById("doen"); ph.addEventListener("mouseover", MouseRollover, true); ph.addEventListener("mouseout", MouseOut, false); } function ...
0
votes
1answer
63 views

addEventListener and gotoAndStop for a menu in a game gives error

I'm new at flash as3. Today, I am trying to code a menu in a game which will refer to a startscreen for a game to show the buttons for the game. In this startscreen, there is a button to link back ...
0
votes
1answer
24 views

SystemButton FLEXIBLE_SPACE Titanium not fully working

I have following a tutorial in order to develop my first app. I am using a multi platform software. Now, the code below does work only the first time around, then the done button disappears. any ...
0
votes
1answer
60 views

adding EventListeners to gmail send button

I am writing a Chrome extension which will pull information from each email you send and store it in a spreadsheet. I'm writing the content scripts in javascript. I want it to start pulling the ...
0
votes
1answer
59 views

Inconsistent Canvas Event Listener making use offsetTop

I have an event listener for a HTML5 web game which is a quiz, but I am having difficulty getting the event listener to get the actual coordinates that should be expected. Using the javascript ...
0
votes
1answer
61 views

I can drag elements outside the document window, but not outside a simple div. Why?

I'm trying to drag things out of my document by capturing the mouse coordinates and moving stuff accordingly. Currently I use document.addEventListener and this works well even if I drag stuff outside ...
1
vote
2answers
76 views

Adding event listeners with Javascript DOM

I'm having trouble adding eventListener to through javascript. Ok, I have a function that creates 4 anchor elements. I want to add an event to them onmouseover that calls a function to change their ...
0
votes
1answer
65 views

Has window.onload event already fired

I have a small javascript util which may get preloaded, lazy loaded or loaded on demand. When it's initiated it adds some stuff to the DOM. It's low priority and if it's preloaded it can wait for the ...
0
votes
2answers
55 views

canvas, trigger mouse event

I'm trying to understand a code for a canvas example : Why is the third parameter "false" in the eventhandler code? What does it stand for? Here the complete code function init () { // ... // ...
0
votes
1answer
28 views

Capturing removeObject from indexedDB

Using a cursor I'm displaying all objects in my indexedDB. My assignment requires us to have an admin account be created on page launch. I've used a localStorage API to record that the account has ...
0
votes
1answer
31 views

How should I restructure my addEventListener?

I'm using Google Maps' API. I have an array of markers and an array of info windows, and I'm trying to get the respective info window to display when the marker is clicked. I'm having trouble ...

1 2 3 4 5 10