Focus indicates the component of the graphical user interface which is currently selected to receive input.

learn more… | top users | synonyms

140
votes
3answers
105k 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 ...
105
votes
9answers
35k views

Is there a way to detect if a browser window is not currently active?

I have JavaScript that is doing activity periodically. When the user is not looking at the site (i.e., the window or tab does not have focus), it'd be nice to not run. Is there a way to do this using ...
46
votes
6answers
24k views

Selecting text on focus using jQuery not working in Safari and Chrome

I have the following jQuery code (similar to this question) that works in Firefox and IE, but fails (no errors, just doesn't work) in Chrome and Safari. Any ideas for a workaround? ...
41
votes
23answers
3k views

How to keep concentrated and focused while waiting for your compiler?

When I'm working on software, I find that as soon as I have to wait more than around 6 seconds for the compiler or for the program to start (or simply for Visual Studio to process some really ...
39
votes
8answers
20k views

Disable orange outline highlight on focus

I am coding an app using jQuery, jqTouch and phonegap and have run across a persistent problem which arises when a user submits a form using the Go button on the soft keyboard. Although it is easy to ...
37
votes
8answers
52k views

How to select an element that has focus on it with jQuery

How can you select an element that has current focus? There is no :focus filter in jQuery, that is why we can use something like this: $('input:focus').someFunction();
36
votes
8answers
26k views

Set focus on textbox in WPF from view model (C#) & wPF

I have a TextBox and a Button in my view. Now I am checking a condition upon button click and if the condition turns out to be false, displaying the message to the user, and then I have to set the ...
36
votes
7answers
12k views

WPF and initial focus

It seems that when a WPF application starts, nothing has focus. This is really weird. Every other framework I've used does just what you'd expect: puts initial focus on the first control in the tab ...
35
votes
2answers
12k views

Which HTML elements can receive focus?

I'm looking for a definitive list of HTML elements which are allowed to take focus, i.e. which elements will be put into focus when focus() is called on them?
34
votes
1answer
15k views

Tutorial on How to drag and drop item from UITableView to UITableView [closed]

I've been banging my head on this one for a while and I figured it out. I want to give back to the community since I've gotten a lot of help from this website :). I'm trying to copy an item from one ...
33
votes
15answers
2k views

The Attention Deficit Programmer - Tips for staying on task? [closed]

With broadband internet being what it is, and tabbed browsing, and the crazy amounts of very entertaining social information sites, and someone down the hall asking for help with the printer (combined ...
31
votes
7answers
66k views

How to scroll to an element in jQuery?

I have done the following code in JavaScript to put focus on the particular element (branch1 is a element), document.location.href="#branch1"; But as I am also using jQuery in my web app, so I ...
30
votes
8answers
35k views

How to show soft-keyboard when edittext is focused

I want to automatically show the soft-keyboard when an EditText is focused (if the device does not have a physical keyboard) and I have two problems: When my Activity is displayed, my EditText is ...
28
votes
15answers
34k views

How Do I Give a Textbox Focus in Silverlight?

In my Silverlight application, I can't seem to bring focus to a TextBox control. On the recommendation of various posts, I've set the IsTabStop property to True and I'm using TextBox.Focus(). Though ...
28
votes
6answers
30k views

Set initial focus in an android application

In my android application it automatically focuses the first Button I have in my layout, giving it an orange outline. How can I set the initial focus preferably in XML, and can this be set to nothing? ...
27
votes
13answers
24k views

Can't set focus to a child of UserControl

I have a UserControl which contains a TextBox. When my main window loads I want to set the focus to this textbox so I added Focusable="True" GotFocus="UC_GotFocus" to the UserControls definition and ...
26
votes
1answer
9k views

WPF: Remove dotted border around focused item in styled listbox

I have a horizontal listbox with a custom controlIemplate. The selected item gets a dotted frame when focused. Anyone know how to get rid of it?
25
votes
6answers
12k views

WPF MVVM Focus Field on Load

I have a View that has a single TextBox and a couple Buttons below it. When the window loads I want that TextBox to have focus. If I was not using MVVM I would just call TextBox.Focus() in the ...
25
votes
1answer
6k views

Remove focus rectangle on a UserControl

I have a WPF UserControl with Focusable="True". It's the only focusable control in the window. Whenever the user presses Tab or Alt (and especially when they Alt+Tab to another application), my ...
24
votes
7answers
33k views

How to remove focus from a textbox in C#/WinForms

I need to remove the focus from several textboxes; I tried using: textBox.Focused = false; but the property is read only. I then tried setting the focus on the form, so as to remove it from all the ...
24
votes
9answers
82k views

Set focus to field in DIV

What is the proper method to set the focus to a specific field within a dynamically loaded DIV? $("#display").load("?control=msgs"); // loads the HTML into the DIV $('#display').fadeIn("fast"); // ...
24
votes
5answers
48k views

Android ListView with Checkbox and all clickable [duplicate]

Possible Duplicate: Android: Binding data from a database to a CheckBox in a ListView? i want to use a ListView with the items having following layout ------------------------- [CB] ...
22
votes
10answers
29k views

How to set the focus to the first input element in an HTML form independent from the id?

Is there a simple way to set the focus (input cursor) of a web page on the first input element (textbox, dropdownlist, ...) on loading the page without having to know the id of the element? I would ...
19
votes
4answers
17k views

jquery Setting cursor position in contenteditable div

The old version of the question is below, after researching more, I decided to rephrase the question. The problem as before is, I need to focus a contenteditable div without highlighting the text, ...
18
votes
10answers
34k views

Set mouse focus and move cursor to end of input using jQuery

This question has been asked in a few different formats but I can't get any of the answers to work in my scenario. I am using jQuery to implement command history when user hits up/down arrows. When ...
18
votes
4answers
13k views

Set Focus After Last Character in Text Box

I have 3 text boxes for a phone number. As the user types, it automatically moves from one textbox to the next. When the user presses backspace, I can move focus to the previous text box. The ...
18
votes
6answers
8k views

How to detect when a tab is focused or not in Chrome with Javascript?

I need to know if the user is currently viewing a tab or not in Google Chrome. I tried to use the events blur and focus binded to the window, but only the blur seems to be working correctly. ...
17
votes
7answers
9k views

Automatic popping up keyboard on start Activity

I got a relative simple question. I have an activity with a lot of EditText's in them. When I open the activity it automatically focusses to the first EditText and displays the virtual keyboard. How ...
17
votes
7answers
20k views

Android: Force EditText to remove focus?

I would like to be able to remove the focus from the EditText. For example if the Keyboard appears, and the user hides it with the back button, I would like the focus and the cursor to disappear. How ...
17
votes
8answers
25k views

Detect which form input has focus using JavaScript or jQuery

How do you detect which form input has focus using JavaScript or jQuery? From within a function I want to be able to determine which form input has focus. I'd like to be able to do this in straight ...
17
votes
1answer
4k views

Which browsers support document.activeElement?

Which web browsers / versions have support for document.activeElement? This property lets you see which element is active / has focus. Are there any main gotchas/difference between implementations? ...
17
votes
4answers
12k views

WPF-MVVM: Setting UI control focus from ViewModel

What is a good practice of setting control focus in MVVM architecture. The way I envision it, is with a property on the ViewModel that would trigger a focus change when needed. And than have the UI ...
16
votes
2answers
26k views

Setting focus on an HTML input box on page load

I'm trying to set the default focus on an input box when the page loads (example: google). My page is very simple, yet I can't figure out how to do this. This is what I've got so far: <html> ...
16
votes
4answers
8k views

WPF: How to programmatically remove focus from a TextBox

I want to add a simple (at least I thought it was) behaviour to my WPF TextBox. When the user presses Escape I want the TextBox he is editing to have the text it had when the user started editing, ...
16
votes
8answers
7k views

Keyboard focus being stolen by Flash [closed]

Performing a search, I noticed several questions dedicated to how to steal/trap the keyboard focus of the visitor. Considering this site is dedicated to programming that's not suprising. I was ...
15
votes
3answers
12k views

Mobile Safari Autofocus text field

In Mobile Safari I am unable to focus onto a text field after setting a delay period. I'm attaching some example code showcasing the issue. If, onclick of the button, you trigger .focus(), everything ...
15
votes
3answers
1k views

Visual Studio: How to stop breakpoint hit from stealing focus?

When a breakpoint is hit in Visual Studio, it steals the focus from whatever other application the programmer is viewing/typing into at that moment. This can be very irritating since VS grabs any ...
14
votes
2answers
5k views

Show window in Qt without stealing focus

I'm using the Qt library to show a slideshow on the second monitor when the user isn't using the second monitor. An example is the user playing a game in the first monitor and showing the slideshow in ...
13
votes
5answers
29k views

Winforms c# - Set focus to first child control of tab page

Say I have a Textbox nested within a TabControl. When the form loads I would like to focus on that textbox (by default the focus is set to the tabControl). Simply calling textbox1.focus() in the ...
13
votes
4answers
28k views

Using JQuery to bind “focus” and “blur” functions for “window”, doesn't work in IE

I need to use JQuery like the follwoing: var focusFlag = 1; jQuery(window).bind("focus", function(event) { focusFlag = 1; }); jQuery(window).bind("blur", function(event) { focusFlag = 0; }); Does ...
13
votes
4answers
5k views

OnScreen keyboard opens automatically when Activity starts

When my Activity with a ScrollView layout and EditTexts starts, the EditTexts get focus and the Android OnScreen keyboard opens. How I can avoid that? When I was using LinearLayout and ...
13
votes
3answers
9k views

jquery, set focus on the first enabled input or select or textarea on the page

It's fairly straightforward. I want to set focus to the first enabled and not hidden control on the page. For a textbox, I have $("input[type='text']:visible:enabled:first").focus(); But I want ...
13
votes
1answer
5k views

Detecting a control's focus in Silverlight

Is there any way to tell whether a control (specifically a System.Windows.Controls.TextBox) is focused in Silverlight? I'm looking for something like the following (what you would see in a regular ...
13
votes
4answers
8k views

Why does a WPF Popup close when its background area is clicked?

I have a WPF Popup control that contains some editing controls (list boxes, text boxes, check boxes) laid out with quite a bit of whitespace. Popup.StaysOpen is set to False, which is required. If ...
13
votes
2answers
9k views

HTML5 placeholder disappears on focus

Is there a freely available jQuery plugin that changes placeholder behavior to match HTML5 spec? Before Focus On Focus Good (Safari) On Focus Bad (Chrome, Firefox) You can what your browser ...
13
votes
2answers
788 views

Textarea loses focus on mouse click?

I'm having some strange issues with a textarea in Google Chrome. The problem is, whenever I click on a textarea in Google Chrome, it will lose focus instantly, and go back to the previous input box. ...
12
votes
8answers
31k views

JQuery focus

Let say i have the next markup: <div id="content"> <div id="firstP"><p>First paragraph</p></div> <div id="secondP"><p>Second ...
12
votes
6answers
21k views

Is it possible to focus on a <div> using javascript focus() function?

Is it possible to focus on a <div> using javascript focus() function? I have a <div> tag <div id="tries">You have 3 tries left</div> I am trying to focus on the above ...
12
votes
1answer
12k views

textbox.Focus() not working in C#

am wondering why this code fails to focus the textbox...? private void sendEmail_btn_Click(object sender, EventArgs e) { String sendTo = recipientEmail_tbx.Text.Trim(); if ...
12
votes
1answer
15k views

How do I set focus to a text box Html.TextBoxFor - mvc 2

I'm trying to set focus on a text box which is generated in the following way: <%=Html.TextBoxFor(model => model.Email, new { style = "width:190px;Border:0px", maxsize = 190 })%> I tried ...

1 2 3 4 5 60