The dom-events tag has no wiki summary.
7
votes
2answers
2k views
Click through div with an alpha channel
I'm trying to replicate twitter's "fade out" layer at the bottom of the feed widget (on their main page at twitter.com).
The only way I could come up with that didn't use html5 was place an absolute ...
4
votes
2answers
71 views
jQuery on() docs
Are the docs for jQuery's on() function incorrect (or unclear)? Consider this code:
<div>
<span>
<div>
<input type="button" value="click me!" />
...
4
votes
1answer
65 views
Modular javascript event library
I want a small library that does DOM4 events. Failing that a sensible subset of DOM3 events will do.
Does it exist?
Answers that are not valid
Use large framework X (jQuery, mootools, prototype, ...
4
votes
3answers
596 views
How to know when an DOM element moves or is resized
I'd like to know if there is a DOM event to listen for that tells me when a DOM element moves is repositioned or is resized on the page. I am not talking about an elements being drag/dropped. An ...
4
votes
3answers
188 views
Which versions of IE use standard event model?
I've googled this but can't find a satisfactory answer. Which versions of Internet explorer, if any, implement the W3C DOM level 2 event model?
4
votes
4answers
913 views
Programmatically press “Left” key in a text input
I am trying to programmatically fire a key event to go left in a text box, but not having any luck.
The input element has focus and the cursor is at the end. I'm trying to get the cursor to move left ...
3
votes
2answers
190 views
when is “DOMNodeInserted” event called?
DOMNodeInserted event is called when the node "be appended to", or "be appended"?
I ask this because the following code:
function AddTextToContainer () {
var textNode = document.createTextNode ...
3
votes
1answer
387 views
How to make sure that all keyboard events in the browser is received by one handler
I have encountered a problem regarding keyboard events such as the keydown event. The application is a single page webapp built entirely using JavaScript and DOM manipulation.
All keyboard processing ...
3
votes
3answers
563 views
How to know which submit button fired the onsubmit event
When you have more than one submit button in a form, is there a way to know which one fired the onsubmit event without adding code to the buttons themselves??
Edit: I need to do the check on the ...
2
votes
3answers
229 views
Unable to understand useCapture attribute in addEventListener
I have read article at https://developer.mozilla.org/en/DOM/element.addEventListener but unable to understand useCapture attribute.Defination there is-
If true, useCapture indicates that the user ...
2
votes
2answers
278 views
Add handler to list box for when user opens list box?
How do I add a handler to when a user just clicks on a list box but doesn't actually select anything? As far as I can tell, onclick on fires when the user selects an item in the dropdown and not when ...
2
votes
2answers
237 views
In the mousedown event, is it possible to cancel the resulting click event? or pass info to it?
for arcane reasons I need to be able to cancel the click event via the mousedown event.
Briefly; I am creating a context menu in the mousedown event, however, when the user clicks on the page the ...
2
votes
2answers
113 views
jquery help with css() and animate()
I have this nav system,
<nav id="mainnav">
<ul>
<li<?php if ( $this->uri->segment(1) == '' ): ?> class="active" <?php endif; ?>><a ...
2
votes
1answer
480 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
257 views
List of an element's events
Is there a way to find all of the events for a element in javascript? or a way to unbind all events from a element?
Thanks.
1
vote
1answer
60 views
Need javascript event after returning mvc FileResult
My app does a form.submit() that invokes an action that returns a FileResult (an attachment). Prior to submit I have javacript that puts up a "please wait" div. I need to clear it when the result ...
1
vote
1answer
163 views
What's the difference between “DOMContent event” and “load event”
In chrome's Developer tool, the blue vertical line labeled "DOMContent event fired", and the red line labed "load event fired". Does "DOMContent event fired" means the browser begin to execute the ...
1
vote
0answers
101 views
Android: input field does not fire event when hitting 'next' on keyboard
I have multiple input fields on a html page optimized for Android.
The problem is that the event "onchange" is not always triggered when 'next' is clicked on the virtual keyboard.
To me this ...
1
vote
1answer
67 views
Prototype Event.observe alternative?
I am used Event.observe method to bind an event; this method is defined in the Prototype library.
Event.observe(clickElem, "click", function(event) {
//operations
});
I am going to remove ...
1
vote
0answers
35 views
how to check if an event is identical to another event during event retargeting in older internet explorers
if you try this in internet explorer you can see that the dispatched event is not unique during bubbling
var x;
myinnerdiv.onclick=function(){ x = window.event; };
myparentdiv.onclick=function(){ ...
1
vote
0answers
172 views
Android browser's drag event target not updating
When I attach a handler to the drag event (I'm using Sencha Touch) on Android,
the event's target does not reflect the current element I'm pointing above,
For example, if my drag started on element1 ...
1
vote
2answers
50 views
Javascript event refuses to die
I have a page which has two different event listeners picking up click events from inside the page. One listener is generic to the site, the other is specific to the page. Recently, a link was added ...
1
vote
3answers
493 views
Jquery - run function when DOM element is added
I have a website with jQuery and jQuery UI. I have a Javascript function:
function ToButton()
{
$(".ToButton").button();
}
This function runing after the page load and change all elements with ...
1
vote
6answers
4k views
Detecting onChange events from a CKEditor using Jquery
I'm working with the CKEditor and jQuery and I'd like to toggle a flag to true whenever a user changes the value of a field. One of those fields is a CKEditor instance.
All the textareas that have ...
1
vote
1answer
502 views
DOM (Events) in GWT
I have a bit of a trouble understanding GWT's architecture. I can see two packages: com.google.gwt.dom.client and com.google.gwt.xml.client. As far as I understand, the first gives a wrapper for the ...
1
vote
2answers
213 views
jQuery - Event for when an attribute of a node changes
I have a webpage with an external javascript library, and my own extra code. The external library can't be change. It manipulates dom elements, adds new ones, changes attributes (e.g. src on some ...
1
vote
1answer
141 views
Strange behavior of button: calling “onclick” parent's element instead of itself (HTML Button)
I have following structure of web application, for which I'm automating testing:
<em unselectable="on" class="x-btn-split">
<button type="button" class="x-btn-text " id="ext-gen523" ...
1
vote
3answers
90 views
assigning variables to DOM event listeners when iterating
I'm thinking there's some basic stuff that I'm missing here;
for (var i=1; i<=5; i++) {
var o = $('#asd'+i);
o.mouseover(function() {
console.info(i);
});
}
When hovering over the ...
0
votes
0answers
45 views
How can I detect Context Menu->Select All event in the browser?
We're using CodeMirror for an XML Editor component we have.
In it, is has lots of listeners, which on of them is Select All (CTRL-A). It listens to the combinations of CTRL and A, and reworks the ...
0
votes
1answer
115 views
event for browser tab hidden/shown
Is there any DOM event for when the browser tab loses/gains focus? I know there are the blur and focus events on window, but they also fire when the browser window as a whole loses focus. The browser ...
0
votes
1answer
321 views
Backbone.js focus event fires two events focus and focusin
The view part of my code using Backbone.js is something like this:
var myView = Backbone.View.extend({
events: {
'focus .cell input' : "updateCurrentCell"
},
...
0
votes
1answer
114 views
window.onbeforeunload for a hash URL?
Typically if you have some text and you want to warn the user about saving before leaving the page, you just do something like ....
window.onbeforeunload = function (){
return "Hey, get back ...
0
votes
1answer
58 views
Detecting where a window is unloading to
So on my site I load a webpage in an iframe, and some sites have frame busting code to break out of the iframe and redirect the top window to their page. I want to use the onbeforeunload event to ...
0
votes
2answers
395 views
Why does jQuery .click() not cause postback when used on this <a> tag?
Think this is a quickie for someone. I have this markup (generated by ASP.Net)...
<A id=anchorO href="javascript:__doPostBack('anchorO','')">O</A>
This anchor is in an update panel, and ...
0
votes
0answers
204 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
1answer
820 views
How is document.createEvent supposed to work with key events?
I'am trying to simulate keypresses in a web application, it is for an embedded system but it uses a Webkit derived browser. I have tested the code in Chrome and get the same error.
I tried to use ...
0
votes
2answers
2k views
jQuery event.layerX/Y is not relative to the element that triggered the event, is that correct?
If I use for example a mousemove event handler on a div and check the layerX property of the event, it changes when my mouse enters a positioned element inside that div (like an image).
According to ...
-1
votes
1answer
113 views
How to show a text field based on user's selection?
I have an array
ABC = ["A","B","C"]
<%= f.select :abc, model::ABC, :include_blank => true %>
If I select C, then I want to display an input field for "city" and "state". Otherwise, those ...