Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
257 views

Pausing setInterval when page/ browser is out of focus

I have a simple slideshow that I've made on a client's homepage, using setInterval to time the rotations. To prevent browsers from screwing up setInterval when the page isn't in focus (another tab is ...
6
votes
3answers
5k views

HTML input onfocus & onblur?

ok, today I'm making a helper HTML function. It looks like this: function Input($name,$type,$lable,$value= null){ if (isset($value)) { //if (this.value=='search') this.value = '' echo ...
5
votes
3answers
296 views

How to determine where focus went?

This has been asked here before, but several years ago, and there was no cross-platform solution at the time (other than the setTimeout solution, which is really not very handy). I'd like to do ...
5
votes
3answers
1k views

button click event lost due to the alert box in text box onblur event

I have created a simple web form, containing one text box and one button. I have captured the onblur event of the text box. <html xmlns="http://www.w3.org/1999/xhtml" > <head ...
4
votes
2answers
8k 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" ...
3
votes
3answers
422 views

Add class to group specific div on focus with jQuery

In the following code, I'm trying to make it so that when an input is selected (focused), that the 'formhead' div in the associated fieldset changes its background color, and on blur it changes back. ...
3
votes
3answers
925 views

google chrome does not fire blur event on radio buttons?

This is my first post here - hello everybody I am currently developing a html form with the support of css and jquery. The form will be used by 'unexperienced users' so my focus lies on good ...
3
votes
3answers
2k views

How do I hide the TinyMCE Toolbar onBlur without deactivating the Rich Text Editor entirely?

I am attempting to hide the TinyMCE Toolbar when a user clicks on another page element and leaves the text area (so essentially onBlur). I have found solutions that will Deactivate the Rich Text ...
3
votes
1answer
2k views

Using jQuery Autocomplete with Validator onBlur timing problem

Here's my problem, I have an input element in a form that is implementing jQuery.Autocomplete and jQuery.validate, all working normally except when I click an element in the autocomplete list to ...
3
votes
7answers
3k 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) ...
3
votes
4answers
5k 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 ...
3
votes
4answers
13k views

Change an element's onfocus handler with Javascript?

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) { ...
2
votes
3answers
22 views

jquery show tips function fails to work in webkit based browsers

I have a jquery function that shows/hides spans that look like "tips" when I click an input field on a form. The function works great on FirfFox,Chrome,IE(!) :) , etc. But not at all on webkit based ...
2
votes
3answers
91 views

Beginner javascript onblur validation not validating

I am just learning javascript and jquery, and I must be doing my validation wrong. I have tried a few different ways, and each time, the first alert (test1) fires onblur, but a bad email does not ...
2
votes
2answers
60 views

Form validation onblur() doesn't work

I have this javascript code (the function SHA-1 is located in an external file): window.onload = validatePass; function validatePass() { var el = document.getElementById("oriPass"); ...
2
votes
1answer
78 views

onblur event not working on <input> element

I have a field on a form that is hidden but pulls data from another field to fill it in. Yet when I have tried it it does not work. I need to use class not id to fill the field. Field with onblur ...
2
votes
2answers
62 views

javascript: How far back does the window get pushed when calling the blur() method? Any rules? Browser-specific?

Does it go all the way to the back? Or does the window go to the back of the browser windows only? How does the functionality vary across browsers? EDIT 6:19pm 10/19/2011: Sorry, i mean how far does ...
2
votes
6answers
157 views

Can I use jquery to blank textarea fields or ajax like input boxes?

I always use this snippet in my work: <input type="text" onblur="if (this.value=='') { this.value='your email'; }" onfocus="if (this.value == 'your email') { this.value=''; }" value="your email" ...
2
votes
4answers
200 views

jQuery blur handler - not working?

I don't understand why the jQuery blur handler isn't working in the most simple case. I'm literally creating a div 100px by 100px and setting a blur event on it, but it's not firing: ...
2
votes
4answers
128 views

Does html body tag have onblur event?

I tried to bind onblur event on body tag, and it does work in IE6/8. But when I turn to w3cschool, it turns out to be that the body tag doesnt have onblur event. Can anyone explain it?Thanks a lot.
2
votes
2answers
631 views

How to get jQuery Validate to fire the “success” method “onchange” instead of “onblur” for select menus?

I'm using the jQuery validate plug-in. I am using the show() method to display the submit button once there are no errors on the page. I have a form that just has a single select/drop-down menu. The ...
2
votes
2answers
1k views

tinyMCE blur event

Hello I want to do some stuff when user finished writing in the tinyMCE textarea and click somewhere outside (onBlur). So far I haver try: $('#id_topic_text_parent').live('blur',function(){ ...
2
votes
4answers
377 views

onFocus and onBlur

For some reason the onblur and onfocus properties don't work. Am I defining them right? var replyTxt = document.createElement("input"); replyTxt.id="replyTxt"; replyTxt.type="text"; ...
2
votes
3answers
8k views

jquery onblur not working

$('#lPass').focus(function() { if (this.value == this.defaultValue) this.value = ''; $(this).after('<input type="password" id="lPass" size="10" value="'+this.value+'"/>').remove(); ...
2
votes
3answers
552 views

How to use firebug when debugging Javascript entailing focus/blur event handling

I'm trying to use Firebug to debug some Javascript that entails blur and focus event handling, specifically some auto-complete/look-ahead functionality. The issue is that, merely by clicking on the ...
2
votes
3answers
3k 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 ...
2
votes
3answers
754 views

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

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"); ...
1
vote
4answers
38 views

HTML input onfocus and onblur

I am trying to get an input text field to have a thick blue border around it when it is in focus and then to default back to its normal default border when it is no longer in focus. One of my input ...
1
vote
2answers
105 views

Issues with using onBlur event

I have taken a look around stackoverflow on the topic of onblur but so far have not been able to locate an approach to solve what I want to do. What I have is a simple two column tables with an ...
1
vote
3answers
88 views

jQuery inputs focused, blurred and everything inbetween

I have three inputs. I want them all to start and end with the same width but in the event one of them is clicked, i want that one to increase width and ALL THE OTHERS to decrease widths. Is there a ...
1
vote
2answers
271 views

jquery onblur menu hide works in firefox not in chrome

Hi, I have some code which displays a drop-down menu when the button is clicked: <button id="friend-requestButton" class="ui-button-icon-only ui-corner-all ui-state-default"></button> ...
1
vote
1answer
150 views

Javascript textfield value focus on

Environment: Please use IE for testing it Requirement: I have an alert message which checks if user enters a value less than 8 digit - user wont be able to move to next field....he should remain on ...
1
vote
1answer
171 views

onBlur killing onClick but not if setTimeout is used

If you put cursor in the first input, then click the button, you get one message. If you put the cursor in the second one (with the setTimeout), you get both messages. Why doesn't the 'button was ...
1
vote
4answers
1k views

textarea onclick remove text

I know how to remove text in a simple html textbox but html textareas seem much more complicated. instead of the value attribute you put the text right between: <html> <textarea> ...
1
vote
3answers
159 views

Content of element doesn't refresh after onBlur action

I try to edit content of an select input when text entered to a textbox by using jQuery. This is my TextBox <input id="id_subsector_selector" type="text" maxlength="100" name="subsector_selector" ...
1
vote
1answer
247 views

Jeditable — Error with onblur:submit and clicking Textbox

I have a table where you input your hours. mouseover doesn't appear to do anything. click,dblclick, and focus do. I can not only have ENTER for submit, this is why onblur: submit. If I use any click ...
1
vote
2answers
410 views

Temporarily removing “onblur” handler in IE

I wonder if someone here can help me figure out this problem. I need to temporarily disable the code in the 'onblur' attribute of an input field, and then re-enable it after. The reason I need to do ...
1
vote
0answers
372 views

onblur not working ie7…javascript

function validateblur() { var EmptyError = 'false'; var validError = 'false'; var despval =trim(document.getElementById('description').value); var despemailval ...
1
vote
5answers
2k views

jQuery onfocus onblur problem

I'm having some trouble getting my onFocus and onBlur events to work properly Here's what I got var var1 $("input").focus(function() { var1 = $(this).val() if ( $(this).val()==var1) { ...
1
vote
2answers
1k views

Dojo: dojo onblur events

I have a form setup with dojo 1.5. I am using a dijit.form.ComboBox and a dijit.form.TextBox The Combobox has values like "car","bike","motorcycle" and the textbox is meant to be an adjective to the ...
1
vote
2answers
992 views

JavaScript onchange, onblur, and focus weirdness in Firefox

On my form I have a discount field that accepts a dollar amount to be taken off of the total bill (HTML generated in PHP): echo "<input id=\"discount\" class=\"text\" type=\"text\" ...
1
vote
1answer
190 views

Cancelling blur handler based on item that was clicked

Hi again you wonderful people! My issue this time is testing if a mouseClick has occurred with a blur statement. I have a global solution where every input field is validated on BLUR. Inside this ...
1
vote
2answers
202 views

How do I write an onblur function to kill this anchor tag?

I wrote this code for 508 compliance but after the users tabs off of it I want the element to go way how can I do this? here is the below: handleInteraction:function(focusable){ ...
1
vote
1answer
173 views

how can i use onblur() option with jeditable plugin

i am working in mvc & using jeditable grid plugin & want to know how can i use the onblur() option to manage subbmit ?
1
vote
2answers
1k views

How should I fire Javascript blur event after click event that causes the blur?

I have run into this problem a few times and I'm not happy with the solutions I've used before. I have an input box with a blur event that validates the content of it and a button which will fill the ...
1
vote
0answers
384 views

javascript onblur onfocus

I have a page with embedded content where a user is tracked using AJAX GET requests. When they change tab/minimize window the window.onblur event stops the tracking, when they return window.onfocus ...
1
vote
1answer
390 views

jquery: focus and blur on the password input field

I only want to set the code to alert one when I am out of 'focus' but the alert keeps piling up if I click on the input field and out of 'focus' more than one? http://nano-visions.net/dump2/focus/ ...
1
vote
1answer
356 views

Add element to change with existing onblur

I would like a separate DIV that's holding the input to also change in background color. How would I add it to my existing code that works? <script type="text/javascript"> ...
1
vote
1answer
95 views

clicking title bar fires onBlur in Opera

I am closing a popup window at 'onBlur' defined for 'BODY' of an ASP webpage, so when a user clicks outside the popup the popup closes. I want the popup to be moveable around the screen and it works ...
1
vote
2answers
685 views

Jeditable Datepicker onblur problem

I am using inline editing using Jeditable and datepicker. I have a column in my table which displays Date as a hyperlink. When I click on this it shows me the datepicker. And when a particular date is ...

1 2 3