textarea Questions

4

A few days ago, I posted a question regarding how to update text in Internet Explorer. As it appears, the method used doesn't also works in Firefox. This made me thinks if there is a way to modify...
Confiscate asked 6/11, 2013 at 14:18

2

When using CKEDITOR with <textarea> tag, it's not working. <textarea id="editor1" name="description" class="form-control" cols="10" rows="10" required></textarea> <script&g...
Denesedengue asked 30/4, 2018 at 12:49

4

Solved

Typically we run javascript code to set any value: document.getElementById('id_name').value = "..."; But I have a page like this: <div id="id_name"> <div class="class_name"> <t...
Shipwright asked 4/12, 2011 at 15:24

2

Solved

I try to get value into a input text and add it to a text area with react-bootstrap. I know I must use ReactDOM.findDOMNode to get value with ref. I don't understand what is wrong. Here my code...
Warthog asked 19/7, 2017 at 15:6

4

Solved

1) while editing a view with the row: @Html.TextArea(name: "Message", rows: 10, columns: 40) I'm getting this error at compile time: ERR: "The best overload for 'TextArea' does not have a par...
Lachrymator asked 7/3, 2013 at 16:54

1

Solved

I have the following code that works perfectly when I load the page it allows to double click a P and make it editable with textarea and revert it back to P when clicking the Save button Double c...
Lawman asked 22/2, 2019 at 14:2

8

Solved

I cannot figure out what is wrong with my markup, but the placeholder for the text area will not appear. It seems as though it may be covered up with some blank spaces and tabs. When you focus on t...
Secondguess asked 17/4, 2012 at 7:23

2

Solved

Here is one of the versions that I tried INSIDE TEXTAREA: (change)="dosomething($event)" and it's not doing anything. What is the directive for "change"?
Elliellicott asked 27/4, 2017 at 21:36

2

Solved

HTML <form name="myForm" id="myForm" onsubmit="return validate();" action="<?php echo $_SERVER['PHP_SELF']?>"> <input type="text" name="name" id="name"> <textarea name="detail...
Deduce asked 1/6, 2012 at 11:29

1

Solved

This should be pretty straight forward.... I would like the placeholder text in a textarea to display quotation marks. As in "HELLO". I tried the usually-reliable "\"Hello\"" but that doesn't work...
Skutchan asked 2/12, 2018 at 17:42

3

Solved

I'm trying to develop an app that looks like a terminal console, am using a TextArea for that and my wish is to habe a black background and green text, The point I want to do this without using any...
Machine asked 5/4, 2016 at 10:3

5

Solved

I have an input field, and the color of the text in it is black. (I'm using jquery.placeholder) Let's say the text in there is "E-Mail" When you click on this field, the black placeholding text di...
Palmation asked 12/7, 2011 at 19:22

2

Solved

Once again I am here because I have exhausted my research on the subject. I have a very simple setup with very simple markup and yet a very strange behavior. The behavior is eerily similar to (Fir...
Teeters asked 25/2, 2015 at 21:35

4

Solved

I was wondering if anybody knows how I would go about detecting when the scrollbar appears inside a textarea. I am currently using mootools for my JavaScript and I am having issues getting it to d...
Biocellate asked 13/7, 2010 at 15:5

4

Solved

Consider the following page, which displays a line of text with a <textarea> underneath it. * { box-sizing: border-box; } html, body { height: 100%; margin: 0; } .outer { ...
Bedlam asked 14/9, 2017 at 18:47

3

Solved

I am trying to pass a HTML <textarea> through JavaScript, and want to keep the line breaks. Ex when I write: Line a Line b It comes out as: Line a Line b My code: function textwrit...
Narial asked 25/10, 2018 at 14:0

7

Solved

I'm trying to create a textarea that looks exactly like a div. However, on iOS there's 3 pixels coming from somewhere that I can't remove. Here's my code: <!doctype html> <title>Text...
Dehisce asked 31/7, 2011 at 14:53

1

In the past, when you set the value of a textarea using javascript, Firefox allowed the user to undo this change (by pressing ctrl+Z, for example). However, this no longer works, and there doesn't ...
Benedikta asked 11/8, 2018 at 2:41

7

Solved

How can I get the caret's position in a textarea using jQuery? I'm looking for the cursor's offset from the start of the text, not for the (x, y) position.
Pytlik asked 11/12, 2009 at 23:3

3

Solved

Is it possible to text indent each line in a textarea? I'm using a handwritten font and the first letter on each line is getting cut off slightly. I've already used padding and margin, but this doe...
Shrieval asked 29/7, 2010 at 4:20

2

I am dealing with a text area in part of a contact form that Chrome wants to autofill with the user's address. As a result many contact requests are submitted by users with their address in the com...
Bowerbird asked 4/4, 2017 at 20:48

3

Solved

I am trying to understand the behavior of the cols and size attributes for textarea and input text, respectfully. Although it should be something straight forward, I can't figure out why do they ha...
Roband asked 20/9, 2013 at 2:41

8

Solved

I'm in a curious situation where I previously had no problem achieving what I'm looking for. The following code is a part of an HTML page which is to host a TinyMCE rich textbox: ... <textarea ...
Sard asked 28/1, 2009 at 16:2

2

Solved

New to shiny and struggling with this for more than two days now. I have created an application where the user loads .csv data file and chooses one or more variables whose names appear in the appli...
Eggbeater asked 31/7, 2018 at 20:13

3

Solved

How does the html5 spellcheck attribute work? I am seeing this page with Chrome 17, which is supposed to support spellcheck on <textarea>, (but not on <input type='text'>), but when I...
Wynne asked 22/2, 2012 at 7:1

© 2022 - 2024 — McMap. All rights reserved.