Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
4k views

Safe, universal, way to use addEventHandler in Javascript?

Before I get into the details of this problem, I'd like to make the situation clear. Our web analytics company works as a consultant for large sites, and (other than adding a single SCRIPT tag) we ...
2
votes
3answers
93 views

Scope troubles in Javascript when passing an anonymous function to a named function with a local variable

Sorry about the title - I couldn't figure out a way to phrase it. Here's the scenario: I have a function that builds a element: buildSelect(id,cbFunc,...) Inside buildSelect it does this: ...
1
vote
2answers
38 views

Attaching JQuery Events to “on the fly created” controls

I'm appending to an existing div in my page. The appended text contains html code in string. The problem is, events aren't working when I add click on them after appending to page. I guess Jquery ...
1
vote
1answer
289 views

Cross-browser event handling

I need a cross-browser function for registering event handlers and a (mostly) consistent handler experience. I don't need the full weight or functionality of a library such as jQuery, so I've written ...
1
vote
2answers
2k views

Correct usage of addEventListener() / attachEvent()?

I'm wondering how to use "addEventListener" resp. "attachEvent" correctly!? window.onload=function(myFunc1){ // do something } function myFunc2(){ // do something } if (window.addEventListener){ ...
0
votes
0answers
35 views

addEventListener Code Snippet Translation and Usage for cross-browser detectioin

I've come across a piece of code that I'd like to model. However, I just have a few questions and perhaps you guys can help. Here's the code: function addEvent( brw_obj, type, func ) { if ...
0
votes
1answer
62 views

javascript attachEvent within loop

I'm using the code below within a loop. It works so long as I'm not using IE. var remove = document.createElement("input"); remove.type = "button"; remove.value = "x"; if (remove.addEventListener) { ...
0
votes
2answers
50 views

Javascript converting addEventListener to attachEvent

I have the following code calling a Javascript function in a nice shiny standards complient manner :). Please note that I must send elementsList[i] to the function (the this keyword will not be ...
0
votes
2answers
112 views

Javascript alternative for this (IE)

I have something like the following code: for(var i=0;i<4;i++) { frm = document.createElement("iframe"); frm.width = "100"; frm.height = "100"; frm.src = "source.php"; frm.id = ...
0
votes
0answers
197 views

Attach “Click” Event Listener to HTMLOptionElement Object

Is it possible for me to attach an event to HTMLOptionElement in Internet Explo? I am aware that one can add a listener to the parent HTMLSelectElement. The following did not work in IE 7, 8, or 9, ...
0
votes
2answers
103 views

attaching event to element in IE via JS and passing in the object itself

I have this bit of JS that is called as it loops through each of the INPUT elements on the page: if (thisField.addEventListener){ // good browsers thisField.addEventListener('focus', ...
0
votes
2answers
94 views

How can I attach an Event to an element of a parent frame in javascript?

I want to attach an 'onclick' event in a link element in my editor. I did this: parent.document.frames["myframe"].document.body.attachEvent('onmouseover', function(e) { ...