The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
35 views

How to detect class changing by DOMAttrModified

I need to detect some class changing, i use for this DOMAttrModified, but something is wrong, what? var first_img = $('body').find('li:first').find('img'); ...
0
votes
1answer
28 views

GWT CellTable highlighted row

So I have a cell table with click event selection model working fine. I later found out you can press UP and DOWN arrows to get the highlighted row to change, but the awful thing is you have to press ...
4
votes
2answers
70 views

bounce animation using constructor?

I want to give a bounce animation to each individual hair on mouseover.the animation part is done on the first hair,but i don`t want to give events to each and every hair image. So here is my ...
2
votes
1answer
60 views

JQuery * (all elements) selector excluding span tags that have some class. How could I make this work?

This is the first code var operations = 0; $('body').bind('DOMCharacterDataModified, DOMNodeInserted, DOMSubtreeModified', 'test', function() { if (operations < 1) { ...
1
vote
1answer
38 views

Reliably detect if a user is using a mouse on a webpage?

On our page we have some iframes in a long horizontally-scrolling <div>. If the user is using a mouse they can scroll with the scrollbars and we would like them to be able to select text within ...
0
votes
0answers
44 views

What event fires when an element is added to the DOM and has been styled and loaded?

I am dynamically adding an element (created by document.createElement( "div" )) and I want to know when the element is fully visible, styled and added. I know there's the event DOMNodeInserted, but is ...
0
votes
2answers
97 views

How can I run a function as soon as an element has finished rendering?

I need to set the height of an element based on the height of another element. Let's say that when that element is finished rendering, it's 490px tall. If I query that other element's height at the ...
1
vote
1answer
99 views

How do I stop scrolling of page when overlay div is visible?

The page I'm working with sometimes displays a modal layover with a div (position: fixed) > div (position: relative; width/height: 100%) > div (position: absolute; left/right: 50%). Both on mobile ...
8
votes
1answer
170 views

Which hooks are provided in jQuery?

Officially only $.cssHooks is documented in jQuery API documentation, and $.valHooks is mentioned in a sentence for a workaround to a known issue in .val(). I wonder how many hooks are there in ...
1
vote
1answer
179 views

Generating a click event in a WebView

I am trying to generate a click event on a particular DOMNode via a menu item on the Mac. I thought this would be pretty simple however, I have seemed to hit a roadblock and not sure where I went ...
0
votes
0answers
36 views

Twitter's Bootstrap listens to events of type 'click.alert.data-api'. How are they triggered?

I don't see any trigger() calls, that would dispatch such events. Are those events synthesized? I couldn't find anything about this in http://www.w3.org/TR/DOM-Level-3-Events/
0
votes
0answers
77 views

How to simulate keyboard/mouse events in Javascript?

I can simulate the following events: 'HTMLEvents': /^(?:load|unload|abort|error|select|change|submit|reset|focus|blur|resize|scroll)$/, 'MouseEvents': ...
1
vote
0answers
179 views

How can I use $().bind and mouseup to remove contextmenu?

I need to use the $().bind method. I do not wish to use another plugin. I simply want to add both a left click and a right click function. Here is my function handler. I also must disable the context ...
14
votes
1answer
3k views

AngularJS: Is ng-click “a good practice”? Why is there no ng-{event} in AngularJS?

I just started to learn AngularJS and struggle with some concepts of AngularJS. It would be great if somebody could explain me some points... I understand that ng-click is technically not the same ...
0
votes
0answers
218 views

Handle touch events before click events with jquery

I am building a gallery slider using jQuery and some plugin (Best I could find fitting my problem). However, the gallery is mainly made of image links. When the user tries to slide by touching these, ...
2
votes
1answer
293 views

How to to initialize keyboard event with given char/keycode in a Chrome extension?

I'm developing a Google Chrome extension which simulates keyboard events on a web-page. I found that event.initKeyboardEvent() does not work properly because of this webkit bug and I also found some ...
0
votes
1answer
641 views

Jquery Event wont fire after ajax call

This is a rather strange issue with jquery. I am loading a div <div id="container"> on page load. Each record is tabular data with a 'delete' ajax function associated with it. When the page ...
0
votes
0answers
76 views

Mouse events outside browser

Google maps somehow can handle the mouse events when the pointer is outside the window. This feature can bee seen during map dragging. I try do the same but I can't catch any event when the pointer is ...
0
votes
0answers
26 views

Mouse events outside element/browser

Google maps somehow can handle the mouse when it is outside the window. This feature can bee seen during map dragging. I try do the same but I can't catch any event when the pointer is outside the ...
1
vote
2answers
287 views

use extrapolation to solve mousemove event lag

After some search on this site I understand that I have no control over a browser's mousemove event frequency. So I want to apply some kind of extrapolation method to solve the lagged mousemove event ...
1
vote
5answers
124 views

Firing a handler once for each actual change in an HTML input element

I want to trigger an event handler once per each actual change in an input field. For example, to validate (per keypress) entry of a credit card number (the change must be on each change so ...
4
votes
3answers
794 views

GWT - ListBox, how to preview changeEvent

I am working on implementing a ListBox that I want to be able to alert the user when they make a selection in the ListBox. Is there a way to respond to the user clicking an item in the listbox, and ...
0
votes
1answer
981 views

Backbone - Checkbox stays checked?

I'm trying to hook up a checkbox to my View, but as soon as I tick it, it stays checked, even when I click it again? Here's part of the View: views.PaginatedView = Backbone.View.extend({ events: ...
2
votes
3answers
425 views

Keypress to change class in jQuery

I have a problem I can't seem to sort out. I have a form with a custom styled button (input type=button). When typing in the text field, I want people to be able to press the TAB key and go to the ...
0
votes
4answers
637 views

adding multiple event listeners to one element

So my dilema is that I don't want to write the same code twice. Once for the click event and another for the touchstart event. Here is the original code: ...
1
vote
1answer
87 views

Javascript: setting up proper event handler for elements

I have a DOM structure which looks something like below - <div id='MyDiv'> <span>Hello MyDiv</span> <p class='MyClass'> <img src='image.png' alt='myImage' ...
3
votes
1answer
104 views

Is there any event that fires right before the browser request another resource such as image?

We would like to measure how much time it takes the browser the get a resource from the network. so for example if my page loads 10 images and 4 scripts I would like to know how much time it took the ...
0
votes
2answers
768 views

How to detect a long press on a button/image

I am working on a phonegap project. I need to implement a long press event. How can we detect long press on a image/button using JavaScript?
0
votes
1answer
44 views

Capturing new requests in a HTML page

How can I capture a new request (e.g. link click, page refresh, etc.) in an html page? Let's say I need to do some stuff when user decides to go to another page or refresh the current page.
0
votes
1answer
239 views

IE event for right-click delete on <input> or <textarea>

What event is fired when you right-click on selected text in an <input> or <textarea> tag and the click "Delete" in Internet Explorer? (I'm targeting version 9, but if it's good for lower ...
3
votes
2answers
369 views

See all dom events for an element

I have a jQuery UI datepicker that, when you click on a date, clears my URL hash to #, and doesn't change the date in the textbox. I assume there's some other JavaScript utility somewhere that has ...
1
vote
1answer
838 views

Detecting scroll finish/end

I'd like to detect when a user has stopped scrolling a page/element. This may be tricky as recently enhancements to OSX's scrolling behaviour creates this new inertia effect. Is there an event fired? ...
0
votes
1answer
168 views

How to raise DOM events when working with KnockoutJS

Lets suppose that I have simple html markup: <div> <input type="text"/> </div> when I click on div I would like to focus input. What ways of doing this i have? I was thinking ...
2
votes
3answers
580 views

Will this JavaScript code affect other keypress events too by disabling one key?

I'm using this to disable the 'scrolling' effect the spacebar has in a browser. Will this affect other keypress events too? window.onkeydown = function(e) { return !(e.keyCode == 32); }; Could ...
0
votes
2answers
37 views

How can I tell definitively, for a given browser, which elements supports which events?

I was trying to figure out why my onblur and onfocus wasn't working on a TD in Chrome. After some research and experimentation where I found conflicting info from different web sources, it seems that ...
2
votes
5answers
1k views

Looking for an alternative to the image onLoad [duplicate]

Possible Duplicate: jQuery or JavaScript: Determine when image finished loading The problem is known, but I can't find any simple solution: var img = new Image(); img.onLoad = function() ...
0
votes
2answers
456 views

google maps api v3: handle user click on map type control?

I need to handle the case when a user clicks on a mapTypeControl differently than when it's set through map.setMapTypeId(). How do I listen for clicks on map type controls?
-2
votes
2answers
1k views

ignore Mouseout event from child element of Mouseover element

I need to display a tooltip for an image on mouseover. I wrote the following code for that. My current issue is that when I put the image into the tooltip div, the event occurs only for the image ...
2
votes
2answers
130 views

Is there a posibility to raise an event when a certain tag is created?

I want to create the equivalent of an onCreate event for all tags which will be created that match a JQuery selector. For instance, let's consider a document where the result of $("#foo > .bar ...
1
vote
3answers
802 views

JavaScript: file input onclick prevent change if user cancels confirm()

How do I prevent a form file input element from changing via the onclick DOM event when using the confirm() method? In example I want to give a user the opportunity to not lose the value of a file ...
6
votes
1answer
918 views

What architectural pattern(s) should I use for my RIA? [closed]

I'm building a web application that interacts heavily with the DOM and need direction in making my code scalable and maintainable. The application overview: Upon interaction, I have toolbars and ...
1
vote
2answers
270 views

Why is event.timeStamp 0 in firefox?

http://jsfiddle.net/wDddR/3/ var input = document.createElement("input"); input.onclick = function (ev) { console.log(ev.timeStamp === 0 ? "WHY IS IT ZERO" : "It's not broken"); }; input.click() ...
13
votes
2answers
628 views

How to emulate Event.timeStamp

Event.timeStamp The timeStamp attribute must return the value it was initialized to. When an event is created the attribute must be initialized to the number of milliseconds that has passed since ...
0
votes
1answer
102 views

Good approch for see if something is removed from the DOM with contenteditable

I have this little snippet. ​<div contenteditable="true"> <img src="/img/logo.png"> </div> I need to know when the image are removed, in the real world application its much much ...
2
votes
1answer
793 views

WebView shows a white page but events are working

When a webview is done loading it only shows a white page. The strangest part is that events (like a click on an anchor) are still working. After i perform this event and go back (with the back key), ...
1
vote
1answer
389 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 ...
4
votes
2answers
98 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!" /> ...
19
votes
1answer
4k 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 ...
4
votes
1answer
186 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
2answers
2k 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 ...

1 2