Tagged Questions

1
vote
3answers
297 views

html onchange /onblur compatibility

I am currently writing a web site which must be compatible with all browsers including IE back to version 6. I was wondering about compatibility issues with these two events in particular: I am using …
0
votes
2answers
77 views

JQuery focus/blur events help

$(document).ready(function() { $('#username').focus(function() { $(this).val(''); }) $('#username').blur(function() { var l = $(this).val.length; if (l == 0) { …
0
votes
3answers
153 views

Event bubbling and the onblur event

I'm writing a form validation script and would like to validate a given field when its onblur event fires. I would also like to use event bubbling so i don't have to attach an onblur event to each …
0
votes
3answers
202 views

Div onblur event called when clicking checkbox inside div

I have a popup div and want to hide it when users click outside of the div. Inside the div, I have a checkbox... Problem is, the div's onblur event gets fired when trying to click on the checkbox. I …
1
vote
3answers
179 views

Cannot get Javascript function to fire from a textbox in a gridview

Hey all I have a textbox in the ItemTemplate of a Gridview. On the _RowDataBound event I add an attribute to the textbox like so: TextBox txtQuantity = (TextBox)e.Row.FindControl("txtQuantity"); …
0
votes
2answers
233 views

onfocus & onblur not working in IE

Hi, I've wrote some code that will allow me to have some greyed out text on an input form, and when the user focuses on it, the text will disappear and become ungreyed out, if that makes sense... …
1
vote
3answers
652 views

jQuery - window focus, blur events not triggering - works in Firefox and Chrome

In a nutshell; I wrote a simplistic chat application for a buddy and me to use. When the window running the application does not have the focus (minimized or behind other windows) and a message comes …
2
votes
6answers
318 views

Blur Event Does not get Fired in IE7 and IE6

I have a dropdown Menu where in a div is clicked and List is shown. On focus out I am supposed to hide the list(i.e. when the user clicks or focuses on some other element and not on mouse out) …
0
votes
2answers
529 views

Javascript On blur event

I've got the following code: <span style="margin:0px 2px 0px 2px;"> <asp:Label ID="labelPromptText" runat="server" Text="Selected Location:" /> <span id="spanSelectedLocation" …
0
votes
2answers
150 views

How do I invoke the IE ‘onblur’ event from VBA code in Excel?

Situation: I am working to populate text entry boxes in a webpage with data from Excel. When the data is entered manually and the focus is moved to another text box, the 'onblur' event is fired to …
1
vote
4answers
3k views

Change an element’s onfocus handler with Javascript?

Hello, I have a form that has default values describing what should go into the field (replacing a label). When the user focuses a field this function is called: function clear_input(element) { …
0
votes
0answers
107 views

Problem with triggering an Ajax POST on the onblur() event

I have an Ajax problem. There is an input field and I want to submit the changed value on the onblur() event. It all works fine except that there is an irritating flicker. I type in the new value …
2
votes
2answers
2k views

JavaScript OnBlur event prevents HTML form from being submitted

Consider the following form: <form action="/a" method="post"> <input name="x" type="text" onblur="myonblur(e)" /> <input name="y" type="text" /> <input name="submit" …
0
votes
3answers
514 views

Self-closing popups in IE — how to get proper onBlur behavior?

I want a transient window to close itself when the user clicks away from it. This works for Firefox: var w = window.open(...); dojo.connect(w, "onblur", w, "close"); but it doesn't seem to work in …