Tagged Questions

2
votes
2answers
497 views

Does remove a DOM object (in Javascript) will cause Memory leak if it has event attached?

So, if in the javascript, I create a DOM object in the HTML page, and attach event listener to the DOM object, upon I remove the the DOM from HTML page, does the event listener still exist and causing ...
1
vote
2answers
22 views

removing javascript eventlisteners

I have this following javascript to activate sometime document.addEventListener('touchmove', function (e) { e.preventDefault(); }, false); but I am having troubles removing the event listener when ...
1
vote
1answer
35 views

JavaScript - How to detect the value of “useCapture” from an event object?

JavaScript - How to detect the value of useCapture from an event object? I made a function that removes an event listener after firing once or any number of times. This is what I have: /*jslint ...
1
vote
2answers
405 views

Dynamically adding listeners in goole maps where iframe src is set differently for each marker

Hi I've read the articles and the excellent piece on scope and closures by Robert Nyman. However i cannot get this to work. I'm trying to assign a mouseover event to various markers and then set an ...
0
votes
2answers
48 views

How to attach a submit listener to all forms without jQuery

I need to attach a submit listener to every form in an iframe but I can't use jQuery. What's the best way of doing this? I'd rather not use window.onload because that requires waiting until the ...
0
votes
1answer
228 views

List of Links: Using Event Listeners to Keep My HTML Structure As Simple As Possible

I've been doing the following for as long as I can remember: <ul> <li><a href="somewhere">Some text</a></li> </ul> Since it's just a list of links, nothing ...
0
votes
3answers
115 views

A way to pass variables (record ids) to jQuery event listeners?

Suppose I generate a list of records on my web page via PHP, and suppose each has a link beside it. And let's say that a modal window pops up when I click the link, and an edit form then shows in the ...
0
votes
1answer
290 views

Event notifications between iframe and parent

I am trying to send an event to iframes which have been opened by the application based on few events which should be prior registered by iframes. I cannot figure out how. I use jquery but I don't ...
0
votes
2answers
2k views

How to get IFRAME to listen to same events as parent (and fire the same handlers)

I've got an HTML page (the parent) with an embedded IFRAME. The parent page has a couple of event listeners for mouse and keyboard events, as shown below (I'm using the Prototype library). var ...