Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
6answers
20k views

padding a text input in IE… possible?

I have a text input with a search buton absolute positioned over it... to make space for the button I used some padding to keep the text from going under the button, which is fine, it works in ...
2
votes
2answers
134 views

jQuery: How to focus on input text field such that the cursor is placed at the end of the text?

Consider the following example: (demo here) HTML: <input type="text" /> <div>Click here to set focus</div> JS: $(function() { $("input").val("Hello"); ...
2
votes
1answer
1k views

Help with the WPF TextCompositionManager events

The docs on this are pretty shoddy. There are a number of events you can hook into to monitor and take control of text input that are accessed via the TextCompositionManager. If you're wanting to do ...
1
vote
0answers
62 views

Form input field only allowing the letter '8' in IE9

I have a Rails site and a web form that works fine in IE7 and IE8. But in IE9, one of the input text fields only allows the digit '8' with IE9.0.8112. I would appreciate any ideas. Thanks. The code ...
1
vote
2answers
585 views

.trigger('create') method doesn't work with text input / iframe

So I'm dynamically inserting text inputs into a jquery mobile page that is inside an iframe. I can get it to insert correctly but the trigger('create') method doesn't apply any jqm styles, although it ...
1
vote
2answers
549 views

Use JavaScript to place cursor in a Chrome text input element

I've been working on sending text to an input element in Chrome and I noticed that, unlike in IE or FF, calling .focus() does not put the cursor in the text area. So does anyone know of an alternative ...
1
vote
1answer
465 views

How can I prevent input controls from stealing the space character from the TextCompositionManager?

Related (but not a dupe!) to this question: http://stackoverflow.com/questions/1053210/help-with-the-wpf-textcompositionmanager-events When using the TextCompositionManager I'm having an issue ...
1
vote
8answers
1k views

Text Input with descriptive text

I was wondering if there's an easy way with javascript (including JQuery, which we're using on the site) to put descriptive text in a text input until the user clicks it to type in their own text. ...
0
votes
0answers
50 views

Input text cursor show at top layer in fixed header for IE browser

I make my header fixed using CSS and when user will focus on input text and scroll vertical then blink cursor shown over header in IE browser but in other browser its shown behind header.
0
votes
2answers
33 views

How to change the text input value to none in this existing project upon focus, in jquery

I have this so far: http://jsfiddle.net/26eVE/4/ I want that when the user clicks on the small input field (that one with value 1 as default), the value changes from 1 to "". EDIT: Also after the ...
0
votes
1answer
83 views

rails / css : variable width text inputs

Is this possible? I have an input (just one line, not a text-field) for comments which currently has a set width of 200px. But Could I make this text input scale with the browser width? So if the ...
0
votes
0answers
31 views

Blackberry Browser Textfeild Height

I've been working with forms for mobile applications and have run into an issue with the default size of the text fields on Blackberry browsers. No amount of styling and forcing seems to work (I am ...
0
votes
4answers
93 views

JQuery - How to only target the title tags of text input elements?

At the moment I am using two plug-ins which both look at title tags so they are clashing with each other. The one I have started using is for tooltips on text input fields that is initialised in the ...