Creating and handling JavaScript events inline in HTML or through a script.
185
votes
11answers
76k 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 ...
167
votes
6answers
34k 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()
...
141
votes
6answers
16k views
“Breaking” Google By Sending “${” Search Query? [closed]
Well, apparently you can "break" Google by sending it a search query like "${." It strips the Google.com page of its tab separators and whatnot.
Is there any apparent reason for this? I imagine ...
83
votes
6answers
32k views
How to distinguish between left and right mouse click with jQuery?
What is the way of obtaining the clicked mouse button with JavaScript using jQuery?
$('div').bind('click', function(){
alert('clicked');
});
this is triggered by both right and left click, what ...
78
votes
12answers
56k views
On - window.location.hash - change?
I am using Ajax and hash for navigation. Is there a way to check if the window.location.hash changed like this?
http://example.com/blah#123 to http://example.com/blah#456
It works if I check it when ...
67
votes
13answers
46k views
Using jQuery to test if an input has focus
On the front page of a site I am building, several <div>s use the CSS :hover property to add a border when the mouse is over them. One of the <div>s contains a <form> which, using ...
61
votes
3answers
44k views
jQuery lose focus event
I'm trying to show up a container if a input field gets the focus and - that's the actual problem - hide the container if focus is lost. Is there an opposite event for jQuery's focus?
Some example ...
33
votes
9answers
12k views
Optimize website for touch devices
On a touch device like iPhone/iPad/Android it can be difficult to hit a small button with your finger. There is no cross-browser way to detect touch devices with CSS media queries that I know of. So I ...
28
votes
6answers
8k views
detect variable change in javascript
Is it possible to have an event that fires when the value of a certain variable changes?
Thanks!
28
votes
8answers
31k 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 ...
27
votes
2answers
13k views
26
votes
4answers
19k views
jQuery check if event exists on element
Is there a way to check if an event exists in jQuery? I'm working on a plugin that uses custom namespaced events, and would like to be able to check if the event is binded to an element or not.
25
votes
7answers
15k views
Pass parameters in setInterval function
How to pass parameter while call a function using setInterval.
viz. setInterval('funca(10,3)',500); is incorrect.
22
votes
4answers
6k views
What is the difference between the mouseover and mouseenter events?
I have always used the mouseover event, but while reading the jquery documentation I found mouseenter. They seem to function exactly the same. Is there a difference between the two, and if so when ...
21
votes
6answers
456 views
Page reload in Chrome unnecessarily triggers bound events just prior to reloading the page
Hope someone has a good answer to this:
Why does Chrome (14.0) triggers the document ready and window load events when I refresh the page? Note that I am not talking about what happens when the new ...
21
votes
4answers
18k views
jQuery equivalent of JavaScript's addEventListener method
I'm trying to find the jQuery equivalent of this JavaScript method call:
document.addEventListener('click', select_element, true);
I've gotten as far as:
$(document).click(select_element);
but ...
21
votes
4answers
18k views
What JavaScript events are available to WebKit on Android?
I'm building a mobile web app targeting Android users. I need to know what JavaScript events are available to me. I have been able to make the following work, but not terribly reliably:
click
...
20
votes
4answers
2k views
How do you detect the clearing of a “search” HTML5 input?
In HTML5, the search input type appears with a little X on the right that will clear the textbox (at least in Chrome, maybe others). Is there a way to detect when this X is clicked in javascript or ...
20
votes
7answers
19k views
jQuery change event on <select> not firing in IE
I've got a page with a variable number of <select> elements (which explains why I'm using event delegation here). When the user changes the selected option, I want to hide/show different content ...
20
votes
4answers
19k views
Simulate JavaScript Key Events
Is it possible to simulate key press events programatically in JavaScript
20
votes
5answers
33k views
19
votes
3answers
7k views
jQuery - Fire event if CSS class changed
how could I fire a event if the a css class was added or changed qith jQuery?
Does changing of css class fire the jQuery change() event?
19
votes
11answers
36k views
Javascript that executes after page load
I'm executing an external script, using a <script> inside <head>.
Now since the script executes before the page has loaded, I can't access the <body>, among other things. I'd like ...
19
votes
5answers
13k views
jQuery Multiple Event Handlers - How to Cancel?
I have two functions bound to a click event at two different times (using jQuery). The order in which they are fired is significant. They are firing in the correct order. The problem is, when the ...
18
votes
6answers
7k views
Handle URL anchor change event in js
How can I write the JavaScript callback code that will be executed on any changes in the URL anchor?
For example from http://example.com#a to http://example.com#b
18
votes
3answers
9k views
Javascript Object.Watch for all browsers?
Hey all, I was looking for an easy way to monitor an object or variable for changes, and I found Object.Watch that's supported in Mozilla browsers, but not IE. So I started searching around to see if ...
17
votes
9answers
4k views
Best way to ask confirmation from user before leaving the page
I am currently building a registration page where if the user leaves, I want to pop up a CSS box asking him if he is sure or not. I can accomplish this feat using confirm boxes, but the client says ...
17
votes
4answers
16k views
How to Clear/Remove JavaScript Event Handler?
Given the following HTML fragment:
<form id="aspnetForm" onsubmit="alert('On Submit Run!'); return true;">
I need to remove/clear the handler for the onsubmit event and register my own using ...
16
votes
5answers
2k views
javascript context menu click event/detection - filter paste content
Scenario: I'm trying to intercept paste events inside a textarea/input text, and filter the content being pasted.
Webkit/IE are handled rather well, as I can attach code to the onpaste event, and ...
14
votes
2answers
1k views
js: understanding how alert() impacts browser event loop
I'm considering adding an alert() to our javascript utility assert function.
We're an ajax-heavy application, and the way our framework (Ext) implements ajax by polling for the ajax response with ...
14
votes
7answers
2k views
link element onload
Is there anyway to listen to the onload event for a <link> element?
F.ex:
var link = document.createElement('link');
link.rel = 'stylesheet';
link.href = 'styles.css';
link.onload = ...
14
votes
2answers
4k views
Javascript global error handling
I would like to catch every undefined function error thrown. Is there a global error handling facility in Javascript? The use case is catching function calls from flash that are not defined.
14
votes
1answer
3k views
What is the event precedence in JavaScript?
What order of precedence are events handled in JavaScript?
Here are the events in alphabetical order...
onabort - Loading of an image is
interrupted
onblur - An element loses focus
onchange - The ...
13
votes
1answer
5k views
How to check if any JavaScript event listeners/handlers attached to an element/document?
Tried to search online, but does not look like I can formulate search query properly.
So as simple as it sounds, how can I, either with jquery or just javascript list all the handlers or event ...
13
votes
5answers
747 views
Help, “this” is confusing me in JavaScript
Working with the JavaScript one of the confusing thing is when using this
var x = {
ele : 'test',
init : function(){
alert(this.ele);
}
}
However when dealing with multiple object and ...
13
votes
3answers
60k views
Javascript:Enter key press event
I have a form with two text boxes, one select drop down and one radio button. When the enter key is pressed, I want to call a javascript function(User defined). But when I press the enter key the form ...
12
votes
2answers
172 views
Selecting text behind another element with createEvent
I have a scenario where I have some text, which should be user-selectable. The problem is, that there's an UI overlay on top of it, which prevents selecting text by default. The logical way to keep ...
12
votes
4answers
276 views
Why can't I reliably capture a mouseout event?
I need to know when the mouse cursor leaves a div. So I hook up the mouseout event. However, if I move the mouse very quickly out of the div, the mouseout event doesn't fire. That's right: the mouse ...
12
votes
5answers
917 views
Are there tools / techniques to debug jQuery event handlers?
I am currently trying to figure out what click event handlers have attached to my div. There should only be one handler attached, but there appears to be at least one. I'm using FireBug but Chrome ...
12
votes
4answers
11k views
How to detect escape key press with javascript [closed]
Possible Duplicate:
Which keycode for escape key with jQuery
How to detect escape key press in IE, Firefox and Chrome?
Below code works in IE and alerts 27, but in firefox it alerts 0
...
12
votes
3answers
4k views
Intercept page exit event
When editing a page within my system, a user might decide to navigate to another website and in doing so could lose all the edits they have not saved.
I would like to intercept any attempt to go to ...
11
votes
2answers
108 views
Is there is a way to detect which side the Alt Key is Pressed
is there is a way that we can detect which side the alt key is pressed the left or right alt i sow in some where that its possible with IE with the altLeft and altRight properties of the event object ...
11
votes
5answers
7k views
Getting value of select (dropdown) before change
The thing i want to achieve is whenever the <select> dropdown is changed i want the value of the dropdown before change. I am using 1.3.2 version of jquery and using on change event but the ...
11
votes
5answers
811 views
JQuery Autocomplete help
I have a customised JQuery autocomplete control that is declared something like this.
$('#SystemCode_Autocomplete').autocomplete({
source: ...
11
votes
4answers
167 views
What is the best way to execute a function when user clicks on a link?
From my experience I know three different ways to execute a Javascript function when a user clicks on a link
Use the onclick attribute on the link
<a href="#" onclick="myfunction();return ...
11
votes
4answers
2k views
Cannot understand node.js
From someone with few experience in JS, what do you recommend for learning Node.js?
I read a lot in the forum about event driven, non-blocking , async, callbacks, etc but I don't know what's that!
...
11
votes
7answers
2k views
how to get a word under cursor using JavaScript
in this case:
<p> some long text </p>
how can i know that mouse cursor is above the 'text' word?
11
votes
4answers
21k views
How can I programmatically invoke an onclick() event from a anchor tag while keeping the ‘this’ reference in the onclick function?
Is it possible to programmatically invoke a onClick-event for an anchor tag, while maintaining the 'this' reference to the anchor?
The following doesn't work... (at least not in Firefox: ...
10
votes
4answers
491 views
jquery ajax, read the stream incrementally?
I have read this question but it doesn't exactly answer my question.
Unfortunately, it looks like things have changed in in the XHR object since I last looked at Ajax, so it is no longer possible to ...
10
votes
4answers
276 views
How to get Events associated with DOM elements?
I have an HTML document.
It is possible to get the events associated with every Element in a particular FORM element in the document using javascript.
var element = document.forms[i].elements[j];
...