Tagged Questions
The onfocus tag has no wiki summary.
7
votes
4answers
58k views
jQuery onchange/onfocus select box to display an image?
I need some help finding a jQuery plugin which will allow me to display an image preview from a select list of images - onfocus/onchange..
Example:
<select name="image" id="image" ...
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 ...
4
votes
4answers
50 views
global function calls by tag possible?
I have many instances similar to the following in my source code:
<input id="a" type="text" name="a" maxlength="40"
onfocus="ThisOnFocus(this)" ...
3
votes
3answers
218 views
CSS: How make the cursor to become a pointer on the input file?
How can I make the cursor to become a pointer on an input file or an input text when you hover it?
My try but it does not work of course,
<input type="file" style="cursor: pointer;"/>
Or do ...
3
votes
3answers
423 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
2answers
296 views
How to change onfocus attribute with jquery according to tabindex?
I have a list of elements in my page which are ordered with tabindex. What I am looking for is how can I emulate that the tab key was pressed so the focus to move on the next element? I am planning to ...
3
votes
4answers
127 views
What is wrong with my code for assigning onfocus event to the element?
I have a following code which I tried to assign onfocus event to the element, so that whenever the element gets focused, call alert.
However, alert only appears when the page loaded, and never after ...
3
votes
6answers
3k views
Clear TEXTAREA value after click (onFocus)
I'm currently using..
onfocus="this.value=''; return false;"
to clear the value within my textarea for leaving comments. However, when you click to enter a comment and type a few things, if you ...
3
votes
1answer
2k views
window.onfocus not firing in IE7, inconsistent in Opera
Note that this relates to focus and blur events on a window, not on form fields.
I'm loading a document in a pop-up window, and it includes the following code:
<script type="text/javascript">
...
3
votes
1answer
2k views
How to get which image (its position) is on focus in an Image Gallery?
I am playing around with the Gallery widget.
I would like to know how can we get the position of the image on focus in the gallery.
For example having several pictures in my gallery, if I tap my ...
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
2answers
93 views
Open the dropdown of a Select element on focus
Is it possible to open the drop down list of a Select element when the Select element gets focus?
I know it automatically focuses when you click it ... but I want it to work when you tab it too.
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
2answers
65 views
html onfocus tab vs page load
Let's say I have an onFocus event for a text box. That event triggers when the user tabs into that box, as expected. But it also seems like the event triggers when the box is selected, and then the ...
2
votes
3answers
115 views
Running Javascript onFocus - Changing DIV html text
Currently I am trying to setup my contact form to give an error message when an invalid email is entered. When a blank or incorrect e-mail is submitted the page should do the following:
Sign Up text ...
2
votes
4answers
379 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
2answers
2k views
How to remove default value of input on focus
I have an input box that has default value text assigned to it. How can I remove this text when the user focuses on the field::
CoDE
<input type="text" name="kp1_description" value="Enter ...
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
1k views
this.type='password' doesn't work in IE, but all other browsers it does
I have an input field that is by default set to type="text" so that the word Password can be displayed in it. I have the following to change it to a password field when the user selects it, which ...
1
vote
4answers
40 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
1answer
22 views
Debugging onFocus event using Chrome Developer Tools? Can't return focus after break point
I'm trying to debug a JavaScript onFocus event attached to a bunch of text boxes on a page. The bug occurs when selecting a text box and then tabbing to the next text box. I'm trying to debug this ...
1
vote
1answer
28 views
Blackberry PictureScrollField image issue when focus is removed
I'm using a PictureScrollField in a VerticalFieldManager with other fields that need focus. When the PictureScrollField receives focus, the images are shown in their original form. But when I remove ...
1
vote
1answer
54 views
GridView ListSelector on focus in Android?
The code below is what I use to create a GridView in my app. But the problem is the list selector's width and height is not equal to the icon's width and height(Image 1). The Image #2 is what I am ...
1
vote
1answer
128 views
How to focus a WPF tab item when tab item content is selected?
I have an application whose user interface is made up of a tab control. Each tab item is bound to a view model that has a IsFocused property. It is set correctly when the tab item header gains or ...
1
vote
2answers
183 views
How to make jQuery autocomplete list display all options onfocus and hide after option is selected?
I have a form with an autocomplete that starts the search "onfocus" and shows the option list when the user clicks into the search field, even when they do not enter anything.
The problem is the ...
1
vote
2answers
104 views
I want to put cursor in beginning of text-box onfocus [closed]
Possible Duplicate:
Set cursor at a length of 14 onfocus of a textbox
I am able to do that in firefox and IE. But for some reason its not working in Chrome and Safari :(
I am simply using ...
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
3answers
104 views
Add to OnFocus codebehind without deleting current OnFocus
I'm developing an ASP.NET page with c# on the backend.
I have some javascript to keep track of where the last focus was before postback, and setting it after postback. However, if the field getting ...
1
vote
1answer
230 views
HTML element type change on onclick and onfocus not working in IE Browsers
i am using below codes for changing the type of HTML element during onclick and onfocus.
function ChangeToPassField() {
document.getElementById('password').type="password";
...
1
vote
1answer
133 views
disable enable a textfield dyanmically
Hi I was trying to make a textfield dynamic. This is my code
<input type="text" id="test1" value ="dynamic" onfocus="this.disabled=true" onblur="this.disabled=false">
<input type="text" ...
1
vote
1answer
108 views
window.onfocus doesn't stop firing in Chrome
The window.onfocus event does not stop firing in Chrome. It is fine in every other browser. Here is my code:
window.onfocus = function() {
alert('focused');
}
What is the best way to fix this?
1
vote
4answers
343 views
window onload and window onfocus
window.onload = function() {
window.onfocus = alert('example');
}
I've met this problem, anyone can help?
I'm new at javascript and made this expecting to work properly, but it does not :)
I want ...
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
1answer
164 views
FileChooser onFocus of text box C++
I want to bypass the need for a button to invoke a FileChooser dialog in my application, so I'm setting it so that when the text box gains focus, the FileChooser just launches automatically.
This is ...
1
vote
1answer
178 views
UserControl tab focus not working
I got a class that extends UserControl
I have a few tabs in it, and I want to recognise when a tab is selected, so I have this:
this.GotFocus += new RoutedEventHandler(OnGotFocus);
...
1
vote
8answers
381 views
OnFocus/OnBlur events not registered
Guys i feel really stupid asking for this, but remarkably im banging my head for an hour already. Here is the code:
<div id="img1" onfocus="alert('test');" onblur="alert('test');">
<img ...
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
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
391 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
2answers
368 views
Reset dropdown lists using javascript
I have the following scenario - a few dropdwon lists and a textbox.
I'd like to 'reset' these drop downs to their original value when a user clicks on the textbox:
Javascript:
function ...
1
vote
1answer
152 views
how do i show the options in a select box when i tab into the box?
I am building an application and have a page with a bunch of select boxes where the user must set different options...
How do i show all the options that are available when the user tabs into the ...
1
vote
1answer
298 views
Blackberry DateField onfocus color
I have a dateField and when I iterate with the cursor over the various sub sections (date month year, etc) of the dateField the focus color by default is blue. When I unfocus the dateField the item ...
1
vote
2answers
442 views
Change color of textbox in JavaScript
I have this small JavaScript code which I need some help with:
function doFocus(text) {
if (text.value == "Enter Name") {
text.value = "Student Name -";
}
}
All I need here is when ...
1
vote
3answers
904 views
Change input text to regular text on blur and ability to edit jQuery
I'm creating a form where I'm eliminating the use of a save button. The form is made up of input text boxes and textareas. After the user enters data into the input field, I want to trigger an onBlur ...
0
votes
1answer
30 views
How to change background color of edittext
i've some edittext and i'm checking the string inside it entered from users. when users clicks button at the end of dialog, if some edittexts aren't filled, i change background color of it and set a ...
0
votes
2answers
31 views
jQuery Validate resetForm() doesn't reset the onFocus validation
I have a form that is using jQuery Validate plugin for client side validation, and submits via AJAX. After the form is submitted, I would like it to reset itself. I have used the .resetForm() method ...
0
votes
4answers
34 views
onFocus .css and onblur .css
My HTML has a placeholder like such:
<input id="additionalsearch" type="text" value="Search Within" onfocus="if (this.value=='Search Within')this.value='';" onblur="if ...
0
votes
1answer
33 views
LinearLayout gets children change selector state on focus
I have a Horizontal Layout in which some vertical layouts are dispatched.
I want to catch the onFocusEvent of my vertical layouts so when one of them gets focus, the image and the textview contained ...