17
votes
9answers
5k views
How to debug Javascript/jQuery event bindings with FireBug (or similar tool)
I need to debug a web application that uses jQuery to do some fairly complex and messy DOM manipulation. At one point, some of the events that were bound to particular elements, are not fired and …
11
votes
3answers
600 views
JavaScript: event.preventDefault() vs return false
When I want to prevent other event handlers from executing after certain event is fired I can do one of those (jQuery examples, but this will work in JS in general):
#1 event.preventDefault()
…
7
votes
2answers
197 views
Proper way to document or diagram custom event models in the DOM
Imagine you have a bunch of components and subcomponents in your web application. You want to keep track of how all the custom events you added behave. Are there established ways to diagram or …
6
votes
4answers
192 views
How to determine if Javascript object is an event?
What is the safest way to determine if a Javascript object is an event?
6
votes
5answers
431 views
Is it possible to listen for changes to an object’s attributes in JavaScript?
I'm working on a fiddly web interface which is mostly built with JavaScript. Its basically one (very) large form with many sections. Each section is built based on options from other parts of the …
5
votes
4answers
245 views
Stop the browser “throbber of doom” while loading comet/server push XMLHttpRequest
(This question is similar to this one, but it's for using XMLHttpRequest instead of an iframe for Comet.)
I'm starting an async long poll like this:
var xhr = new XMLHttpRequest();
xhr.open('POST', …
5
votes
8answers
281 views
is there any way to call a function periodically in javascipt
Is there any way to call a function periodically in JavaScript.
5
votes
7answers
2k views
GWT Custom Event Handler
Can someone give me an example of creating a custom set of an Event and a Handler.
Say you have a Person object that you want your widgets to know if it got updated.
You create a HandlerManager and …
5
votes
3answers
1k views
Simulate JavaScript Key Events
Is it possible to simulate key press events programatically in JavaScript
4
votes
1answer
165 views
Create a jQuery special event for content changed
I'm trying to create a jQuery special event that triggers when the content that is bound, changes. My method is checking the content with a setInterval and check if the content has changed from last …
4
votes
1answer
581 views
Tooltips (title=”…”) won’t show in Firefox
I have an element with a title attribute (ie, a tooltip), wrapped in some container:
<div id="foo">
<input type="text" title="A tooltip" />
</div>
and I attach a "mousemove" …
4
votes
5answers
174 views
When calling a Javascript function, how do I set a custom value of “this”?
I'm using jQuery and I have a function that serves as an event callback, and so in that function "this" represents the object that that captured the event. However, there's an instance where I want …
4
votes
2answers
162 views
how to make a click or double click on a word on a webpage to trigger an event handler?
for a page like
http://www.answers.com
if the user double clicks on any word in the page, a pop up box will show up and shows the definition for that word.
I can think of a way to use DOM scripting …
4
votes
2answers
627 views
Enabling back/fwd key events for an Ajax Application
I have an application which works heavily on AJAX. However I want to have navigation functionalities in it. To spoof the url, I am changing the location.hash, to generate URL. But if i use back/fwd, …
4
votes
5answers
701 views
How to change characters typed in Firefox
I need to change in a text input the character '.' to ',' while typing.
In IE I change the keyCode event property in the keypress event, like this
document.getElementById('mytext').onkeypress =
…
