active questions tagged javascript-events - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T04:53:19Zhttp://stackoverflow.com/feeds/tag/javascript-eventshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1814298/trouble-determining-onclicks-target0Trouble determining onclick's targetPedro2009-11-29T00:53:46Z2009-11-29T02:11:20Z
<p>I've tried and tried... and I can't seem to make this work in IE (tested version 6)
Can anybody help me? IE complains about an error but refuses to tell which error it is...</p>
<pre><code> var a = document.getElementsByTagName("a");
for (i = 0; i < a.length; i++) {
if (a[i].getAttribute("class") == "info-link") {
a[i].onclick = function(e) {
e = e || window.event;
var target = e.srcElement || e.target;
var info = target.parentNode.getElementsByTagName("div")[0];
if (info.style.display == "none" || info.style.display == "") {
info.style.display = "block";
} else {
info.style.display = "none";
}
return false;
}
}
}
<div class="auxdata">
<a href="#" class="info-link">Esta questão possuí dados anexos. Clique para ver.</a>
<div style="display: none;" class="info-inner">
<!-- variable stuff here -->
</div>
</div>
</code></pre>
http://stackoverflow.com/questions/1814190/javascript-form-validation0Javascript form validation. andrew2009-11-28T23:57:08Z2009-11-29T00:02:11Z
<p>Hi, I am doing some basic form validation. </p>
<p>I have the following javascript function</p>
<pre><code>function fullField(x,span_id)
{
var result=false;
if(x.value==0)
{
document.getElementById(span_id).innerHTML =" Required";
result=false;
}else{
document.getElementById(span_id).innerHTML="";//can use tick <img src='images/site_images/tick.png' />
result=true;
}
return result;
}
</code></pre>
<p>I have an input which is checked onblur</p>
<pre><code><input type='text' onblur='return fullField(this,'span1')name='first_name' />
<span id='span1'></span>
</code></pre>
<p>The function works, writing 'Required' into the span if the person tabs off the field without filling it in. However, when i click submit the form still submits.
I think i am missing some fundamental point here because i though that if any of the fields in my form return false then the form would not submit. Is the only way to get around this to check the entire form again onsubmit? </p>
http://stackoverflow.com/questions/1794514/jquery-accordion-unbind-click-event0JQuery accordion - unbind click eventStinky Tofu2009-11-25T03:58:02Z2009-11-28T05:04:33Z
<p>I am writing a form wizard using JQuery's <a href="http://bassistance.de/jquery-plugins/jquery-plugin-accordion/" rel="nofollow">accordion module</a>. The problem is I want to override any mouse clicks on the accordion menu so that the form is validated first before the accordion will show the next section.</p>
<p>I have tried the following:</p>
<pre><code>$('#accordion h3').unbind();
$('#accordion h3').click(function() {
if (validate())
{
$("#accordion").accordion('activate', 2);
}else
{
alert("invalid form");
}
}
</code></pre>
<p>But the above code doesn't work. The built-in click event of the accordion still gets called and the accordion shows the next section regardless of whether the form is valid or not.</p>
<p>I have also tried the following code:</p>
<pre><code>$('#accordion h3').click(function(event) {
if (validate())
{
$("#accordion").accordion('activate', 2);
}else
{
alert("invalid form");
}
event.stopPropagation();
});
</code></pre>
<p>But the stopPropagation() call doesn't seem to affect the accordion behaviour at all, the next section is displayed whether or not the form is valid.</p>
<p>Any idea what I may be doing wrong? </p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1810710/obtaining-the-value-of-a-select-dropdown-from-within-a-function0obtaining the value of a select dropdown from within a functionPetroleumJelliffe2009-11-27T21:36:30Z2009-11-27T22:57:20Z
<p>I have a method of an object called <code>update</code> that generates an integer, and if it's different than the value of the <code>region</code> variable, assigns it to <code>region</code>. If the integer is the same as <code>region</code> then the user selects a value from a <code><select></code> dropdown menu.</p>
<p>I'm trying to figure out how to get the value of the <code><select></code> into the function.</p>
<pre><code><form>
</code></pre>
<p>
Select a region
Northeast
Southeast
North Central
South Central
Plains
Northwest
Southwest</p>
<p>
</p>
<pre><code> //Destination object
var destination= function(spec) {
spec= spec||{};
var that= {};
that.update= function(newDest) {
function roll() {
return Math.floor(Math.random()*6)+Math.floor(Math.random()*6)+Math.floor(Math.random()*2)*11;
};
newDest= newDest||{};
//newDest is event
newRegion=newDest.target.value;
//newDest is empty object
newRegion= newDest.region||codes[roll()][0];
if (spec.region=== newRegion) {
//ask user for new region
//how do i use event handlers here?
};
//set new region
spec.region= newRegion;
//set new city
spec.city= newDest.city||codes[roll()][newRegion];
};
return that;
};
</code></pre>
http://stackoverflow.com/questions/1806599/how-can-i-capture-the-enter-key-in-firefox-3-5-and-redirect-the-page-using-window0How can I capture the enter key in Firefox 3.5 and redirect the page using Window.Location?Deepu2009-11-27T03:23:53Z2009-11-27T05:30:55Z
<p>I am trying to implement a search functionality that is capturing the enter key and redirecting to a different page in an ASP.NET 3.5 application. Unfortunately it does not work in Firefox (version 3.5) but in IE it is working perfectly. Please see the following code:</p>
<h3>Script:</h3>
<pre><code>function searchKeyPress(e) {
if (window.event) { e = window.event; }
if (e.keyCode == 13) {
document.getElementById('btnSearch').click();
}
}
function redirect() {
document.location = "http://localhost:5555/search.aspx?q=keyword";
}
</code></pre>
<h3>Markup:</h3>
<pre><code> <form name="form1" method="post" runat="server" id="form1"/>
<input type="text" id="txtSearch" onkeypress="searchKeyPress(event);"/>
<input type="button" id="btnSearch" Value="Search" onclick="redirect();"/>
</form/>
</code></pre>
<p>Has anyone else experienced this issue?</p>
<p>Any help would be appreciated!</p>
http://stackoverflow.com/questions/1803338/simulate-the-tab-key-function-in-javascript0simulate the tab key function in javascriptpraveenjayapal2009-11-26T12:12:38Z2009-11-26T13:05:35Z
<p>Hi Friends,
I am having a form with lots of entries. I would like to change my focus to the next textbox, once i entered the value in the current textbox. and want to continue this process upto the last field. My question is, is it possible to simulate tab key through javascript coding once i enter the value in the text box.</p>
<p>Without pressing the tab key in keyboard, i would like to bring the same functionality through javascript. Is this possible ?</p>
http://stackoverflow.com/questions/1799255/jquery-disable-form-element-when-checkbox-is-checked0jQuery disable form element when checkbox is checkedDakota R.2009-11-25T19:06:57Z2009-11-25T19:46:26Z
<p>I have a complicated jQuery form and I want to disable several form elements if a certain checkbox is checked. I'm using jQuery 1.3.2, and all the relevant plugins. What am I doing wrong here? Thanks, Dakota</p>
<p>Here is my HTML:</p>
<pre><code> <li id="form-item-15" class="form-item">
<div class='element-container'>
<select id="house_year_built" name="house_year_built" class="form-select" >
...Bunch of options...
</select>
<input type="text" title="Original Purchase Price" id="house_purchase_price" name="house_purchase_price" class="form-text money" />
<input type="text" title="Current Home Debt" id="house_current_debt" name="house_current_debt" class="form-text money" />
</div>
<span class="element-toggle">
<input type="checkbox" id="house_toggle" />
<span>Do not own house</span>
</span>
</li>
</code></pre>
<p>Here is my jQuery:</p>
<pre><code>$('.element-toggle input').change(function () {
if ($(this).is(':checked')) $(this).parents('div.element-container').children('input,select').attr('disabled', true);
else $(this).parents('div.element-container').children('input,select').removeAttr('disabled'); });
</code></pre>
http://stackoverflow.com/questions/1796141/properly-bind-javascript-events0properly bind javascript eventsJackie2009-11-25T10:53:18Z2009-11-25T13:41:39Z
<p>Hello.
I am looking for the most proper and efficient way to <strong>bind javascript events</strong>; particularly the onload event (I would like the event to occur <strong>after both the page AND all elements such as images</strong> are loaded). I know there are simple ways to do this in Jquery but I would like the more efficient <strong>raw javascript</strong> method.</p>
<p><em>Thank you ;)</em></p>
http://stackoverflow.com/questions/1735560/stop-the-browser-throbber-of-doom-while-loading-comet-server-push-xmlhttpreques5Stop the browser “throbber of doom” while loading comet/server push XMLHttpRequestJaka Jančar2009-11-14T20:52:13Z2009-11-25T01:08:54Z
<p>(This question is similar to <a href="http://stackoverflow.com/questions/1064782/stop-the-browser-throbber-of-doom-while-loading-comet-server-push-iframe">this one</a>, but it's for using XMLHttpRequest instead of an iframe for Comet.)</p>
<p>I'm starting an async long poll like this:</p>
<pre><code>var xhr = new XMLHttpRequest();
xhr.open('POST', url);
xhr.send();
</code></pre>
<p>If I do this inside <code><script>...</script></code> in the head, it will cause the document to keep loading forever. (I'm testing this in Safari on Mac OS X and the iPhone, and it's the only browser I need to support).</p>
<p>Using <code>DOMContentLoaded</code> or <code>load</code> events won't work.</p>
<p>Using a setTimeout with a <em>large enough</em> delay will work. 0 won't, 1000 will, 100 will some times and not other times. I don't feel comfortable with this.</p>
<p>The only way I found that works is the combination of both:</p>
<pre><code>document.addEventListener('DOMContentLoaded', function () {
setTimeout(function () {
var xhr = new XMLHttpRequest();
xhr.open('POST', url);
xhr.send();
}, 0);
});
</code></pre>
<p><strike>I guess this solves the problem for now, but I'm still afraid it will break in the future.</strike> // Edit: this doesn't work reliably either.</p>
<p>Does anyone know of a more reliable way?</p>
http://stackoverflow.com/questions/1793864/listen-for-events-from-browser-find-window-in-javascript0Listen for Events from Browser "Find" Window in JavaScriptviatropos2009-11-25T00:11:09Z2009-11-25T00:38:29Z
<p>Is there a way to listen for typing into the browser's "find" window in <a href="http://en.wikipedia.org/wiki/JavaScript" rel="nofollow">JavaScript</a>?</p>
<p><img src="http://images.apple.com/safari/images/find20070611.png" alt="this window"></p>
<p>I'd like to be able to reinterpret the search text from JavaScript. What do I need to add an event listener for?</p>
http://stackoverflow.com/questions/1791133/settimeoutfn-delay-doesnt-delay-as-expected0setTimeout(fn(), delay) doesnt delay as expectedMiau2009-11-24T16:17:52Z2009-11-24T16:20:38Z
<p>hi all</p>
<p>I must be missing something quite obvious here because something rather strange is happening</p>
<p>I have a bit of js code that goes pretty much like this</p>
<pre><code>setTimeout(myFn(), 20000);
</code></pre>
<p>If I m correct when I hit that line, after 20 seconds <strong>myFn</strong> should run right?</p>
<p>in my case myFn is an ajax call and it happens quite fast ( not at 20seconds and I just dont understand why. Any ideas or pointers? </p>
http://stackoverflow.com/questions/1788887/bypassing-event-stoppropagation0Bypassing event.stopPropagationNir2009-11-24T09:20:14Z2009-11-24T15:01:30Z
<p>Hi,
I'm writing a Javascript add-on (not in jQuery) which starts working when a certain event has been triggered. It works fine on most of the sites, but I encountered problems in sites that use stopPropagation().
Is it possible to bypass this and attach the event anyway?
Thanks!</p>
http://stackoverflow.com/questions/1786377/jquery-simulate-native-click0[jQuery] Simulate native clickscribu2009-11-23T22:06:03Z2009-11-24T00:20:44Z
<p>I need to trigger the click event on a link and then, if none of the listeners prevented the default, change the location. </p>
<p>This is what I've got so far:</p>
<pre><code>var $el = $('a#my_special_link');
var onClick = $el.attr('onclick');
// Hack to capture the event object
var ev_reference;
var ev_capture = function(ev) { ev_reference = ev; }
$el.bind('click', ev_capture);
// Don't leave out the onClick handler
if ( typeof onClick == 'function' )
$el.bind('click', onClick);
$el.trigger('click');
// Clean up
$el.unbind('click', ev_capture);
if ( typeof onClick == 'function' )
$el.unbind('click', onClick);
// Redirect if necessary
if ( ! ev_reference.isDefaultPrevented() )
window.location = $el.attr('href');
</code></pre>
<p>Any suggestions for improvement are welcome.</p>
<p><strong>PS:</strong> Yes, it's just how a regular link would work, except you can do some other processing in between.</p>
<p><strong>PPS:</strong> No, just doing $el.trigger('click'); will <em>not</em> change the location.</p>
http://stackoverflow.com/questions/1517924/javascript-mapping-touch-events-to-mouse-events1JavaScript mapping touch events to mouse eventsunknown (google)2009-10-05T01:43:38Z2009-11-23T08:17:55Z
<p>I'm using the YUI slider that operates with mouse move events. I want to make it respond to touchmove events (iPhone and Android). How can I produce a mouse move event when a touchmove event occurs? I'm hoping that just by adding some script at the top that touchmove events will get mapped to the mouse move events and I won't have to change anything with the slider. </p>
http://stackoverflow.com/questions/1750223/javascript-keycode-values-are-undefined-in-internet-explorer-81JavaScript KeyCode Values are "undefined" in Internet Explorer 8mbmccormick2009-11-17T16:53:45Z2009-11-23T07:35:01Z
<p>I'm having trouble with some JavaScript that I've written, but only with Internet Explorer 8. I have no problem executing this on Internet Explorer 7 or earlier or on Mozilla Firefox 3.5 or earlier. It also executes properly when I use compatibility mode on Internet Explorer 8.</p>
<p>What I'm doing is overriding the Enter keystroke when a user enters a value into a textbox. So on my element I have this:</p>
<pre><code><asp:TextBox ID="ddPassword" runat="server" TextMode="Password" onkeypress="doSubmit(event)" Width="325"></asp:TextBox>
</code></pre>
<p>And then I have the following JavaScript method:</p>
<pre><code>function doSubmit(e)
{
var keyCode = (window.Event) ? e.which : e.keyCode;
if (keyCode == 13)
document.getElementById("ctl00_ContentPlaceHolder1_Login").click();
}
</code></pre>
<p>Again, this all works fine with almost every other browser. Internet Explorer 8 is just giving me a hard time. </p>
<p>Any help you might have is greatly appreciated. Thanks!</p>
<p>UPDATE: Thanks everyone for your quick feedback. Both Chris Pebble and Bryan Kyle assisted with this solution. I have awarded Bryan the "answer" to help with his reputation. Thanks everyone!</p>
http://stackoverflow.com/questions/1780907/userscript-run-js-on-password-fields-as-theyre-loaded1UserScript: run JS on password fields as they're loadednornagon2009-11-23T03:05:39Z2009-11-23T04:39:57Z
<p>I want to write a user script that runs some custom JS on each <code><input type="password"></code> field that gets loaded. I could register an event handler on document load to look for all input fields and run the JS on them, but that means firstly that the JS won't run on input fields that subsequently get added by other JS, and secondly it won't run until the page is fully loaded.</p>
<p>I want to put <a href="http://mattt.github.com/Chroma-Hash" rel="nofollow">ChromaHash</a> into all of my password fields.</p>
http://stackoverflow.com/questions/1729100/is-there-a-profitable-way-to-record-user-actions-in-textarea2Is there a profitable way to record user actions in textarea?shaman.sir2009-11-13T13:02:44Z2009-11-22T15:39:49Z
<p>I need to send bunch of commands to the server on timer - like: </p>
<pre><code>put(0,"hello")
del(4,1)
put(4," is around the corner")
</code></pre>
<p>so I need to monitor and record all of the user input and compile/flush it on the timeout (idle), something like macros.</p>
<p>I can record all things happening <code>onKeyUp</code>/<code>onKeyDown</code>/<code>onMouseDown</code>/<code>onMouseUp</code> using textarea cursor position and keys information (and make it cross-browser <em>some time</em> later) but I can't handle things like pasting using mouse right button and selecting 'Paste' or pasting from the menu (I can handle <code>onChange</code>, but I will have no information is it pasted or already recorded as pressed keys and it fires only after focus change). Even pasting from context menu fires some useful info, but the menu from the browser is the only thing, giving nothing for javascript.</p>
<p>Is there any plugin for jQuery or something like that and do I really have no other ways to implement it without comparing current-document and document-a-second-before?</p>
<p><strong>Upd.:</strong> There are events for handling <code>cut</code>/<code>copy</code>/<code>paste</code>: <a href="http://www.quirksmode.org/dom/events/cutcopypaste.html" rel="nofollow">http://www.quirksmode.org/dom/events/cutcopypaste.html</a> , but what about
the <code>undo</code> one?</p>
<p>P.S. I will show a macro-recording code when I'll finish, if someone really needs it. And to finish it properly, I just need the <code>undo</code> handling possibility. Current version is here: <a href="http://code.google.com/p/sametimed/source/browse/WebContent/module-editor.js" rel="nofollow">http://code.google.com/p/sametimed/source/browse/WebContent/module-editor.js</a>, look for <code>compileCommands</code> method.</p>
http://stackoverflow.com/questions/1058243/script-to-hide-status-bar-messages-in-firefox-ie-opera-safari0Script to hide status bar messages in Firefox, IE, Opera, Safari ?Babu Kumarasamy2009-06-29T13:18:54Z2009-11-22T08:12:59Z
<p>Hi,</p>
<p>Currently I am using this </p>
<pre><code>OnMouseOver="window.status='';return true;"
</code></pre>
<p>for </p>
<pre><code><asp:LinkButton ID="lnkCategory" runat="server" onMouseOver="window.status='' ; return true;" onMouseOut="window.status='';" oncontextmenu="window.status=''; return true;">
</code></pre>
<p>This works fine in IE but not in firefox.</p>
<p>How can I able to change this.</p>
<p>I want to disable the status bar messages for the linkbutton.</p>
http://stackoverflow.com/questions/1558065/access-event-object-in-event-handler0Access event object in event handlerRajat2009-10-13T03:30:13Z2009-11-22T03:57:39Z
<p>When i try to attach event handler functions with parameters like :</p>
<pre><code>myhandle.onclick = myfunction(param1,param2);
function myfunction(param1,param2){
}
</code></pre>
<p>Now I want to access the event object in my handler function. There is an approach mentioned on the web of sending event object, like:</p>
<pre><code>myhandle.onclick = myfunction(event,param1,param2);
</code></pre>
<p>But its giving event object undefined when i test it out.</p>
<p>I know libraries make this stuff easy but I am looking for a native JS option.</p>
http://stackoverflow.com/questions/1769374/onclick-event-in-select-html-not-working-in-safari0onclick event in select html not working in safariJeff T.2009-11-20T09:37:27Z2009-11-20T09:37:27Z
<p>i have a asp.net dropdownlist control with onclick and onchange event javascript.
both works in IE,mozilla, Opera and google chrome but not in safari.. when i remove onclick, onchange suddenly works.
The reason i use onclick is to get the value of the dropdownlist before it change. Is there a way i can do that without using onclick? i mean, get the value of the dropdownlist before it change when you select a new value? i want to do it in javascript only..</p>
<p>Many Thanks,</p>
http://stackoverflow.com/questions/1763386/javascript-disable-enable-event-and-addhandler0Javascript disable/enable event and $addhandlerhelios4562009-11-19T13:43:25Z2009-11-20T00:52:45Z
<p>I am fairly new to JScript and I am looking for a way to subscribe to the event when a textbox is disabled or enabled. I am creating a AJAX Extender Control and I am subscribing through the JScript:</p>
<pre><code>$addhandler(textbox, 'EventName', Function);
</code></pre>
<p>I have it working for "click", "focus" and "blur", but I'd like to get enable disable working.
Is there an exhaustive list of events that can be hooked into out there? I've tried googling everything I know.</p>
http://stackoverflow.com/questions/1759987/detect-variable-change-in-javascript3detect variable change in javascriptrashcroft222009-11-18T23:58:15Z2009-11-19T01:47:16Z
<p>Hi!</p>
<p>Is it possible to have an event that fires when the value of a certain variable changes?
Thanks!</p>
http://stackoverflow.com/questions/766566/cant-focus-input-field-in-dom-loaded-with-ajax-call0Can't focus input field in DOM loaded with ajax calljessicah2009-04-20T00:59:53Z2009-11-18T21:29:31Z
<p>I have gone insane trying to figure out how to make this work. Code looks roughly like:</p>
<pre><code>function onDropDownChanged() {
$("#updatePanel").load(
"myUrl",
{ id: $("#myDropDown option:selected").val() },
onPanelLoaded
);
}
function onPanelLoaded() {
$("#theTextInput").focus();
}
$(document).ready(function() {
$("#myDropDown").change(onDropDownChanged);
}
</code></pre>
<p>The first time the change handler is fired, it does the ajax update, and the text box is focused.</p>
<p>However, on subsequent changes, it continues to do the ajax update, but the text box is never focused again.</p>
<p>I found that if in <code>onDropDownChanged</code>, I added <code>$("#updatePanel").empty()</code> before the ajax call, the text box would always get focused. The problem with that is the entire form disappears for a second, causing an ugly flash. Given ajax is supposed to make things like this nice, it's not a workaround I want to use.</p>
http://stackoverflow.com/questions/570960/how-to-debug-javascript-jquery-event-bindings-with-firebug-or-similar-tool17How to debug Javascript/jQuery event bindings with FireBug (or similar tool)Jaanus2009-02-20T19:42:51Z2009-11-18T16:31:20Z
<p>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 simply stop working.</p>
<p>If I had a capability to edit the application source, I would drill down and add a bunch of Firebug console.log() statements and comment/uncomment pieces of code to try to pinpoint the problem. But let's assume I cannot edit the application code and need to work entirely in Firefox using Firebug or similar tools.</p>
<p>Firebug is very good at letting me navigate and manipulate the DOM. So far, though, I have not been able to figure out how to do event debugging with Firebug. Specifically, I just want to see a list of event handlers bound to a particular element at a given time (using Firebug Javascript breakpoints to trace the changes). But either Firebug does not have the capability to see bound events, or I'm too dumb to find it. :-)</p>
<p>Any recommendations/ideas? Ideally, I would just like to see and edit events bound to elements, similarly to how I can edit DOM today.</p>
http://stackoverflow.com/questions/1748084/jquery-attach-function-to-load-event-of-an-element0jQuery attach function to 'load' event of an elementMiguel Ping2009-11-17T10:58:10Z2009-11-18T12:12:43Z
<p>Hi,</p>
<p>I want to attach a function to a jQuery element that fires whenever the element is added to the page.</p>
<p>I've tried the following, but it didn't work:</p>
<pre><code>var el = jQuery('<h1>HI HI HI</H1>');
el.one('load', function(e) {
window.alert('loaded');
});
jQuery('body').append(el);
</code></pre>
<p>What I really want to do is to guarantee that another jQuery function that is expecting some #id to be at the page don't fail, so I want to call that function whenever my element is loaded in the page.</p>
<p><hr></p>
<p>To clarify, I am passing the <strong>el</strong> element to another library (in this case it's a movie player but it could be anything else) and I want to know when the <strong>el</strong> element is being added to the page, whether its my movie player code that it is adding the element or anyting else.</p>
http://stackoverflow.com/questions/1470854/capture-javascript-event-in-ie-mobile0Capture javascript event in IE MobileGuido García2009-09-24T10:31:06Z2009-11-18T07:46:40Z
<p>I need to detect the id of the element that generated an onchange event.</p>
<p>This code work in most <strong>modern browsers</strong>:</p>
<pre><code><input type="text" onchange="return onchange_handler(event);"
function onchange_handler(event) {
var id = event.target ? event.target.id : event.srcElement.id;
...
return false;
}
</code></pre>
<p>But it does not work in <strong>IE Mobile</strong>.</p>
<p>I have tried the following code, and at least the event is fired and the handler function is called, but <code>window.event</code> is not available when event handler is called:</p>
<pre><code><input type="text" onchange="return onchange_handler();"
function onchange_handler() {
var event = window.event; // <= evaluated as UNDEFINED
var id = event.target ? event.target.id : event.srcElement.id;
...
return false;
}
</code></pre>
<p>Is there any way to obtain a reference to the fired event? Or an alternative approach to know the id of the element that caused the event.</p>
http://stackoverflow.com/questions/1747700/document-click-triggered-on-enter-form-submission2Document Click triggered on 'enter' form submissionCorey Hart2009-11-17T09:48:38Z2009-11-18T00:18:50Z
<p>I'm having trouble understanding why a click event binded to the document would be triggered through an 'enter' form submission. Here's the test page I'm looking at:</p>
<pre><code><html>
<head>
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js'></script>
<script type='text/javascript'>
$(function(){
// Form Submission
$('form').bind('submit', function(event){
console.log('Submit: ', event);
return false;
});
// Input events
$('input[type=text]').bind('keyup', function(event){
console.log('Keyup: ', event);
}).bind('keydown', function(event){
console.log('Keydown: ', event)
});
// Doc Click
$(document).click(function(event){
console.log('Document Click: ', event);
});
});
</script>
</head>
<body>
<form action='test.html' method='GET'>
<input type='text'>
<input type='submit' value='Submit'>
</form>
</body>
</html>
</code></pre>
<p>Any idea's?</p>
http://stackoverflow.com/questions/1751303/validating-radiobuttons-with-an-other-textbox-item0Validating radiobuttons with an "other" textbox itemDave Roberts2009-11-17T19:49:21Z2009-11-17T21:25:16Z
<p>I have a HTML form with a couple of radio buttons. The first few are normal radios, but the last one is associated with a text box. I'd like to run some JavaScript validation to warn users when they select "other" without providing a value using the text box.</p>
<p>Functional HTML + JS is linked below, but the rough outline of the HTML is:</p>
<pre><code><ul>
<li>
<input type="radio"/> foo
</li>
<li>
<input type="radio"/> bar
</li>
<li>
<input type="radio"/> other, please specify:
<input type="text"/> <span class="error">please provide a value</span>
</li>
</ul>
</code></pre>
<p>I have some JavaScript to focus the text box when the Other radio is checked, and vice versa.</p>
<h3>The problem</h3>
<p>I can't figure out which events to hook into to get the validation working as I'd like.</p>
<p>Test cases I'm having trouble with:</p>
<ol>
<li>Warning should never be visible in this sequence of actions:
<ol>
<li>Start with the Foo radio selected, and no text in the textbox.</li>
<li>Give the text box focus (e.g. click it); the Other radio is automatically checked.</li>
<li>Select Foo radio</li>
</ol></li>
<li>Warning should be first shown when I perform step 3:
<ol>
<li>Start with Foo radio selected, and no text in the textbox.</li>
<li>Give the text box focus (e.g. click it); the Other radio is automatically checked.</li>
<li>Don't type in the text box, and continue on with the rest of the form (i.e. give focus to something else).</li>
</ol></li>
</ol>
<h3>Things I've tried</h3>
<ol>
<li><p><a href="http://www.adeptable.org/examples/otheroption/blur.htm" rel="nofollow">Validating on the text box's <em>blur</em></a> (or <em>change</em>) event. the warning flickers into existence at case 1 step 3. This is because the blur happens before the Foo radio becomes selected.</p></li>
<li><p>Validating on the ul's <em>blur</em> event: it doesn't have one.</p></li>
<li><p><a href="http://www.adeptable.org/examples/otheroption/blurmouse.htm" rel="nofollow">On the text box's <em>blur</em> event, add a handler for document's <em>mouseup</em> event</a>. On the mouseup, validate and remove the handler. This works when the loss of focus in case 2 step 3 is caused by clicking somewhere else. It doesn't work when the loss of focus is caused by the keyboard, or tabbing away from the window. Or when multiple mouse clicks overlap in time. Fixing these seems like it's going to make things overly complicated.</p></li>
<li><p>Handling the text box's <em>blur</em>, and using <code>setInterval</code> to call the validation. I can't find a nice value for the delay; too short means a slow mouse click causes flicker, and too long means the validation seems unconnected to action which caused the blur.</p></li>
</ol>
http://stackoverflow.com/questions/1749946/flash-events-not-generated-in-google-chrome-extension0Flash events not generated in Google Chrome extensionNeb2009-11-17T16:12:43Z2009-11-17T16:12:43Z
<p>We're writing an extension for Google Chrome, which only consists of inserting a Flash object in the HTML content. This FLash object generate public external events that can be trapped in JavaScript. Events are correctly trapped if in a normal HTML page, but inside the Chrome extension, it doesn't work.</p>
<p>It's like Chrome is blocking any events generated from a Flash application when inside an extension. Even if I set "allowScriptAccess" to "always", it's doesn't work.</p>
<p>Anyone has seen this behavior and did you found a fix?</p>
http://stackoverflow.com/questions/1749833/javascript-event-between-onfocus-and-onchange1Javascript Event Between onFocus and onChangeBlairHippo2009-11-17T15:55:32Z2009-11-17T15:58:49Z
<p>I'm working a web page where I'd like to run some Javascript code when a user alters text in a given input field, but I can't figure out which event to trap (assuming one exists) that would give me the behavior I'm looking for. <code>onFocus</code> happens too soon -- if the user selects the field but doesn't change any text, I don't want anything to happen. But <code>onChange</code> is too late -- I'd like the Javascript to fire as soon as the user starts typing, not when the user is <i>done</i> typing and clicks something else. How could I accomplish this?</p>