0
votes
0answers
22 views

Problems with activating webBrowser c#

I have some problems in my program. My program has WebBrowser component with FLASH content (Piano app). if click on other controls(buttons, lists, etc), I need that flash content become active. If I ...
0
votes
1answer
85 views

jquery ui autocomplete input select value

I use jquery autocomplete to search in a xml file. The autocomplete function works fine. However, when I click on an element item of autocomplete menu result , the value put inside the input search ...
0
votes
1answer
48 views

How to adjust width of input box when using :focus?

I have the following code: #inputfield { width: 300px; height: 28px; font-style: italic; outline: medium none; padding: 3px 0px 3px 5px; margin: -2px 1px 3px 0px; box-shadow:inset 0 0 4px 0 #dfdfdf; ...
1
vote
0answers
41 views

Can't edit input after switching focus with javascript

I'm experiencing this issue on several Android devices, using JS to switch the focused field. - While I'm inserting value, everything is going well, so once a field has reached the max-length, then ...
0
votes
3answers
57 views

Css input:focus only on first click

Does anybody know a way to input:focus an element only on first click? <style> input[type='text'].error:focus{border-color:#f00} </style> So, if the user "focus out" it returns to the ...
1
vote
0answers
173 views

Android EditText OnFocusChangeListener

does anyone know if there is possible to clean OnFocusChangeListener from EditText? My situation is something like that: 1. I set OnFocusChangeListener for EditText 2. After a while I need to change ...
2
votes
2answers
68 views

jquery focus and blur function but also if val is not equal to null.

I am trying to modify the background of an input based on the focus and blur events. That part works fine, but I also want to set the background if the client has entered a value into the search box. ...
0
votes
1answer
96 views

Make cursor leave text field with jQuery

I have a html form with input type=text which launches a custom js function on submit. When the user hits ENTER, a jQuery listener calls the same function. This means: The user can choose between ...
0
votes
0answers
20 views

Forward Keyboard Input from one Application to another in OSX

I'm wondering if it's somehow possible to keep keyboard input in an application while another is focused*. Is there any way to forward the keyboard input from the focused application to another one in ...
3
votes
1answer
68 views

Keep dropdown visible while input boxes are focused

My navbar has dropdown "fieldsets" for login and search like this: <div class="nav-button" id="nav-box"> <a class="inside-link"> <span id="inside-text">Sign ...
0
votes
0answers
73 views

Mouse pointer jumping to focus on input field

I have the problem that when you move the cursor over an input field in Firefox, the pointer suddenly jumps into the field and the next move pops out again. I use Linux Mint 14th. The "jumping" of the ...
0
votes
0answers
103 views

Bind Input Focus Event to Colorbox Modal Dialog Input

I want to detect focus on an input inside a dynamically generated Colorbox modal. The focus or focusin event never fires if the input is inside a modal. I have tried binding the focus inside the ...
0
votes
1answer
73 views

How can I automatically select a text input field on an iPad?

I need a text input field to be ready to type into as soon as the page opens. I've found a couple of questions like this answered, but none of them seem to be specific to whether or not it's possible ...
10
votes
1answer
286 views

iOS input focused inside fixed parent stops position update of fixed elements

The following happens on Mobile Safari iOS 6.1.2 Steps to reproduce Create a position: fixed element with an <input type="text"> element inside it. Actual result Input - not focused The ...
2
votes
1answer
93 views

Checking for text input in <input type=“text”> with jQuery, why doesn't this code work?

So on my website I want login fields to work where if I click on the username field, the placeholder "username" disappears and I can then type in a username. If I don't type anything in and click away ...
0
votes
1answer
136 views

Keep selected text on input focus

I’m trying to add a link on a selected text (inside a contenteditable). The link window is just an input field. The problem is that after I select some text, click the link button to show the link ...
1
vote
3answers
335 views

Returning focus to input field after clicking on div

To make it easy to enter accented characters in an input field I display a pop-up div which shows the characters so you can select and click. I want to keep the focus on the input field (or return it ...
0
votes
3answers
126 views

Check to see if any Input elements are in focus

I have a jquery script that displays a div when any key on the keyboard is pressed. I'd like to add a condition to the script that will only run the script if no other input area (textarea or ...
0
votes
1answer
73 views

how to use nextAll to find all inputs using jquery/

i have this html: <div class="field phone"> <input type="text" maxlength="3" /> </div> <div class="field phone number1"> ...
0
votes
2answers
53 views

Is it possible to open a modal on input focus and enter a value to the input from the modal?

novice jquery user here. I'm looking to open a modal when an input is focused/selected and input a value to the input from a button in the modal. So the events would be. 1. Focus an input. 2. Open a ...
0
votes
1answer
29 views

Prevent from inserting char, and firing new event

I have problem with, capturing "keydown" and then change focus to "last active" focus. If I set focus to particular element within function that captures event, "input" element get a "char" ...
1
vote
3answers
636 views

HTML5: How to set focus on a text input in a list with AngularJS

I use AngularJS with the ng-repeat directive to show an array of objects as a list. <li ng-repeat="cue in cues" class="form-inline"> <input type="text" ng-model="cues[$index].text" ...
0
votes
0answers
178 views

Set focus and start typing with JQUery on IPad

I have a problem with focus on IPad. How to set focus on input field and start typing text by showing the keyboard? With JQuery Here JQuery focus() method on the ipad is said, that Apple "doesn't ...
1
vote
1answer
134 views

Phonegap clearing input on focus

I have a phonegap application with a bunch of input boxes, somehow when a touch the "next" button in a field, the next field is cleared on focus (Supose it was previously filled with some text). Does ...
1
vote
2answers
286 views

jQuery on keyboard backspace move to previous input field if becomes empty

I have this jQuery script: $(document).ready(function() { //Focus the first field on page load $(':input:enabled:visible:first').focus(); //Clear all fields on page load ...
3
votes
2answers
580 views

jQuery clear input text on focus

I have this jQuery script: $(document).ready(function() { $(':input:enabled:visible:first').focus(); $('.letters').keyup( function() { var $this = $(this); ...
1
vote
2answers
93 views

jQuery: giving focus to searchabledropdown

I am using the jQuery plugin searchabledropdown, which essentially transforms a <select> selection element into an input field where results are displayed as you type (it still looks and behaves ...
1
vote
1answer
100 views

text box with unselectable ='on' getting selected in ie on tab press from previous text field

textbox with unselectable ='on' getting selected in ie for tab press from previous text field. form 'input1' on tab press it should go to 'input3' with out selecting input2. < input ...
0
votes
3answers
297 views

Adding class to input when default value changed

I have an input field that has a default value added with JavaScript <input type="text" class="input-text required-entry validate-value-eg" id="city_field" name="city" ...
0
votes
2answers
87 views

How to set focus to the text after the hint in EditText?

I'm interested in you can set the focus to the text after the prompt to EditText? If no such attribute for xml layout? At the moent I still looked like this. need EDIT : The fastest and working ...
0
votes
2answers
95 views

WPF application with several windows including a non active: focus issue

I have a .Net 4 application with two windows in WPF 4: One uses the WS_EX_NOACTIVATE style to prevent gaining focus. The other is a basic Window. The "no-activate" window behavior is appropriate ...
0
votes
3answers
736 views

jQuery input value focus and blur

I have the following code so that when a users selects an input box the value will disappear, but the default value will then be re-inserted once a user clicks off it. $(function() { ...
-1
votes
1answer
240 views

Setting input focus after tab is clicked

When a page has a search box with multiple tabs, one of the tabs is always selected; either the default tab is selected or the user has changed the tab. In either case the search input box of the ...
0
votes
0answers
60 views

Android js focus() on form input

From what I understand the javascript focus() is disabled on android, is there any work around to focus a html input in the android browser?
0
votes
0answers
153 views

JQuery switching input text fields on the ipad

I have a shopping cart app that needs to take credit cards. The credit card numbers get entered into 4 different input fields side by side, because that's how most credit cards are formatted, ...
1
vote
1answer
371 views

Possible input focus bug in Mobile Safari?

I am using the following plugin to create a virtual keyboard within a phonegap application: http://mottie.github.com/Keyboard/mobile.html This is working 100% fine apart from the cursor NOT ...
2
votes
1answer
977 views

Select() Input Field with Knockout.js

I am new to Knockout.js. What is the best way to select() an <input /> when it becomes visible? View: <p> Name: <b data-bind="visible: !editing(), text: name, click: ...
0
votes
1answer
102 views

Unable to focus input on embedded swf on page load in Opera

I have a simple html file which is meant to display embedded flash where I can write straight from the start, withouth clicking on it earlier. To my dissapointment, I can't do it in my favorite ...
2
votes
2answers
2k views

Mobile Safari: Javascript focus() method on inputfield only works with click?

I can't seem to find a solution for this problem. I have a simple input field like this. <div class="search"> <input type="text" value="y u no work"/> </div>​ And I'm trying ...
0
votes
2answers
239 views

Focusing on Text Input Field When <select> field is shown

I am working on creating a form section which shows input fields (either text or select fields) when a user checks the respective checkbox. The problem that I am having though is that if you have ...
0
votes
2answers
526 views

JQuery: .focus() on input only on first click?

I have an input textbox that fades in as soon as the user clicks on a button, and then fades out if the user clicks on the button again. Each time the user clicks on the button, the input is focused ...
1
vote
0answers
824 views

SenchaTouch and Phonegap on Android - Input field focus is not moved

I have a problem with Android, SenchaTouch 1.1.1 and WebView. I have a simple form with 2 inputs. One is text and other password field. Now there are two problems with that. If you focus the ...
-1
votes
3answers
123 views

How to remove default values of multiple inputs on focus

there's a nice function created in the answer to this question How to remove default value of input on focus, but how can it be re-used and applied to multiple input fields? something like this, but ...
0
votes
2answers
106 views

Input blur and window blur

So I have this jsFiddle (http://jsfiddle.net/KDAM8/), and am trying to figure out how to make the input retain it's value on the window's blur. When you focus on an input, then alt+tab out, or click ...
0
votes
1answer
380 views

how to use Jquery :focus selector on input elements in iOS?

I'm using Jquery 1.7.1 and iPad1 iOS3. I need to fire a function on scrollstart unless an input element has focus. The function below worked for a long time, but all of a sudden it doesn't (looking ...
0
votes
1answer
141 views

Avoid the blue color of the selected field in BlackBerry WebWorks

I have html content which a native application built with PhoneGap. This application has 2 fields, one of text and a texarea. When I write in each activates the blue background, and I can see ...
0
votes
3answers
366 views

CSS Forms/Input Maniuplation

input:required{ background-color:#f00; } input:required label{ color: #FF3434; } I have the above CSS code currently for my form, I want to be able to make the label red when the field is ...
1
vote
3answers
605 views

jQuery <select> simulation with input and div

I have one input field and one division with span children <input type="text" id="input" name="input" /> <div id="content"> <span>option 1</span> <span>option ...
1
vote
0answers
127 views

Tabbable input type=“file” Without Text Box Being Tabbable

I have an input element of type 'file': <input type="file"> and it currently uses jQuery's fileUpload Plugin (version 5.8.1). I have some css that hides the text box of the file input, ...
1
vote
2answers
295 views

Twitter-like input fields with jQuery

I'm trying to make some input fields that I would like to work like Twitter's registration form. On focus the value text becomes light grey. When you start typing the light grey default value ...

1 2