The HTML5 placeholder attribute specifies a short hint that describes the expected value of an input field (e.g. a sample value or a short description of the expected format). The hint is displayed in the input field when it is empty, and disappears when the field gets focus.

learn more… | top users | synonyms

0
votes
2answers
20 views

placeholder to textarea inside a JSP page

I am trying to use the plcaeholder attribute inside a <textarea> tag of a jsp page. <textarea rows="13" cols="94" id="message" name="txtAreaName" style="vertical-align: ...
0
votes
0answers
6 views

placeholder align issue with android webview

Now in my project, using webview to display html. For one input field, we want to align the placehoder to right. -webkit-input-placeholder {text-align: right; color: red;} The placeholder is red, ...
0
votes
0answers
3 views

Why placeholder text set in NSTextView will not dissapear after starting typing?

I made bindings for NSTextView with NSString and set text for Null placeholder in Interface Builder. Also checked on 'Conditionally updates value' checkbox. The placeholder string has black color (not ...
0
votes
3answers
40 views

Is it possible to have a 'permanent' placeholder?

I am working on a system which includes some textboxes which measure things like temperature, heart rates beats per minute etc. Right now I just use a textbox and add the unit after the textbox on the ...
0
votes
3answers
57 views

C Struct Assigning to Struct Array

I am trying to add a struct to an array of structs, however I'm getting an error: Parse Issue: Expected expression. Below is my code: main.c: #include <stdio.h> #include "map.h" int main(int ...
0
votes
2answers
31 views

In mozilla firefox, the placeholder is working but issue on pressing esc key

First I tested support by function SupportsInputPlaceholder() { var i = document.createElement("input"); return "placeholder" in i; } $(document).ready(function(){ ...
0
votes
0answers
12 views

Opera not styling my HMTL5 input placeholder

This is really ugly. Any work-around on how to style the opera placeholder? I got the normal html5 placeholder and some css. Opera just doesnt seem to get it...
0
votes
0answers
17 views

Placeholder form attribute causing responsive design to break when switching orientation

Going to try my best to explain this as I don't have a working example at the moment. I've found now with two sites, both using twitter bootstrap as a framework, an odd occurrence regarding the form ...
0
votes
0answers
27 views

Jquery Validate Incompatible with Placeholder Polyfill? [IE9 Bug]

I'm currently using the Placeholder Polyfill by Mathias Bynens in combination with the jquery.validate plugin (v1.11.1) and am running into a frustrating error with Internet Explorer 9. I cannot get ...
1
vote
2answers
44 views

Selecting placeholder's value as a selected value in asp.net mvc3

I am using Telerik Dropdownlist in ASP.NET MVC3. I have take placeholder in it as Select. After selecting value when i'll click on reset button, I want to set dropdownlist's selected value as a ...
1
vote
2answers
36 views

Use placeholder in TCPDF

I run some complex calculations for a creditnote and the first page is a summary of the overall amount. What i do not want to do is run through all provisions to calculate the summary and afterwards ...
0
votes
0answers
35 views

Bootstrap IE10 UTF8 placeholders?

I try to insert utf8 text to a placeholder attribute on input field: <input type="text" placeholder="!עברית" /> jsfiddle It works fine on all browsers (IE8+), but on 2 machines running IE10 ...
1
vote
1answer
47 views

Application scope PropertyPlaceHolder Spring in Mule

I'am using Mule CE 3.3.0 and I have a problem with the PropertyPlaceHolder's scope. Let's suppose that I have two mule application (writeApp and readApp). In the writeApp application I set a ...
0
votes
1answer
26 views

Hide placeholder value with JQuery

I have a lot of templates with some text input like this: <input type="text" autocomplete="off" value="" placeholder="Keywords" name="keywords" id="keywords"> The client asked me to hide the ...
1
vote
1answer
35 views

datepickerfield sencha touch 2 - how to change default placeHolder color from black to grey?

There is: { xtype: 'datepickerfield', placeHolder : 'Date', } As resul, HTML file displays: <input class="x-input-el x-form-field x-input-text" type="text" id="ext-element-121" ...
2
votes
2answers
54 views

Placeholder not working mozilla latest with bootstrap

Bootstrap v2.3.1 - less placeholder styles working on chrome but not working on Mozilla latest version Please help Less code here .placeholder(red);
0
votes
4answers
56 views

How to make the placeholder disappear when I type something in the div?

The Jquery function placehold(id,placeholder) // id of element and placeholder text { $("#"+id).text(placeholder); //initialize form field } $(document).ready(function() { ...
1
vote
0answers
21 views

How to create a “placeholder” for DIV that act like textfield?

Div don't have a placeholder attribute <div id="editable" contentEditable="true"></div> I want <Please your enter your Name> to show in DIV when the User backspace the whole text ...
0
votes
1answer
37 views

Change placeholder text with jquery also auto-update in IE

I use the placeholder attribute to show some info in the input field. To support this in IE I use jquery. The code works in IE. However, depending on what a user selects in a dropdown list, the value ...
1
vote
0answers
55 views

select2: programmatically controlling placeholder

I want to change the placeholder on a select2 enhancing control upon an event. So I've got this... <select id="myFoo" placeholder="Fight some foo..."> ...which is then enhanced: init: ...
3
votes
2answers
45 views

Should the attribute “placeholder”'s text be printed after sending HTML to a printer?

I'm noticing a discrepancy between the outputs of printing this simple jsfiddle in Chrome and FireFox: http://jsfiddle.net/Qrqug/ <input type="text" placeholder="Hello World" /> It seems ...
0
votes
1answer
20 views

Python placeholders in strings containing the % symbol

I want to be able to use a placeholder in a string that already contains a % symbol. For instance, I would like to be able to iterate to open multiple URLs by my URL already contains a % symbol, ...
0
votes
1answer
57 views

Dynamic Control automatically removed from PlaceHolder on Button Click

I am adding the dynamically TextBox in the placeholder on the button click in that. When all the textboxes are loaded I am making changes in the values and again Press another Button to save the ...
-3
votes
2answers
35 views

Making search field value disappear after starting typing [closed]

Is it possible to make the search field placeholder disappear NOT after clicking on it, but after starting typing? Thanks in advice!
-1
votes
4answers
46 views

How to change the input type property in jQuery?

I have a login form having username and password fields. I am using placeholder to show help text for each input. It's working fine FF, Chrome but not in IE, as placeholder is a HTML5 input property. ...
2
votes
0answers
66 views

Edit the placeholder attribute with IE7

I'm trying to access and edit the placeholder attribute of an input field. With IE8+ it's working. With IE7 it's not. I can access and read the attribute, but I'm not able to edit the attribute with ...
0
votes
1answer
65 views

how to add an icon on search form placeholder in bootstrap by default its showing search

i m using the bootstrap theme for my wordpress site.my problem is that in my navbar the search form is showing the placeholder as search and i want to change it thats why i change the searchform.php ...
1
vote
0answers
9 views

Required and Placeholder clash on forms

I am writing a form and using the required tag and the placeholder tag on inputs. However inputs of type text do not seem to become required as the placeholder text is already making it validate. Is ...
0
votes
1answer
27 views

Creating custom annotations with place-holder?

I'm creating some custom annotations. I need to create someones with "place-holders" as it is used in Spring @Value("#{aParameter}") or in JSF 2 @ManagedProperty(value="#{aParameter}") I ...
0
votes
1answer
30 views

Save into the file with value instead of placeholder

I use Apache Velocity, so I have a *.vm file, the content of which "Hello $name". Velocity.init(); VelocityContext context = new VelocityContext(); context.put("name", "Velocity"); StringWriter w = ...
0
votes
1answer
37 views

HTML5 like placeholder

Is there a plugin or built-in functionality for CKEditor 4.x that would act like HTML5 input/textarea placeholder? Only thing I found is http://ckeditor.com/addon/placeholder, but that seems to be ...
0
votes
1answer
25 views

multiple events, one function in jQuery.on handler

All the examples I've found to emulate HTML5 placeholder for non-supporting browsers trigger on focus, which is NOT how it works in supporting browsers (and kinda sucks). It would be better (IMHO) to ...
0
votes
1answer
34 views

Removing input placeholder on a printable version of an html page

I have a form with input fields. Each input field has a placeholder attribute. There is also a link displaying the printable version of the same form. My problem is that if I leave the placeholder ...
1
vote
1answer
57 views

Webshims placeholder is being hidden when appending dynamic content

I'm trying to put together an email list template Using Handlebars.js with requirejs and Backbone.js, the initial rendering shows up as expected - a single email input with an add icon to add more. ...
0
votes
1answer
51 views

Clear form inputs and keep placeholder

I know that using this jQuery tool $('.myDiv input').each(function () { $(this).val(""); }); clears my form but can anyone help me with some suggestions how to keep placeholders of the input? ...
0
votes
0answers
78 views

Placeholder for an Iframe php

I use an onclick event on a text box. If a user clicks inside the textbox, a youtube video is loaded inside an iframe (in div "video_holder"). Next to this div, there is a div called "text_holder", ...
1
vote
4answers
89 views

Is it possible to create a variable as a placeholder for 'current' value of a class in python?

Let's say we have a class: NOTE: this is a dummy class only. class C(object): def __init__(self): self.a = -10 self.b = 5 self.c = 2 def modify(self, **kwargs): ...
0
votes
0answers
83 views

User control in place holder button is not working with update panel

I have a aspx page like this. There is place holder on to it. I load the user controls in this place holder dynamically, when i click on a particular button. <asp:UpdatePanel runat="server" ...
1
vote
0answers
44 views

Save Placeholder on Postback

I am creating a table dynamically on an click event of a Button private void CreateDynamicTable() { PlaceHolder1.Controls.Clear(); int tblRows = Rows; int tblCols = ...
-1
votes
1answer
16 views

How to add placeholder images from Imageholdr?

I am a new developer and i searched for tools that i can use to design websites more efficient, and i came across http://imageholdr.com, anyone used it before? They say that i can add pictures easy on ...
0
votes
1answer
31 views

Submitting form with serialize() - how to avoid the placeholder text?

Im submitting my form and saving the data with an $.ajax $("#formName").serialize() post call. My issue is that the placeholder text is submitted with the serialize() action. I have a function that ...
0
votes
1answer
102 views

Disable / remove the default input type= “email” validation text overlay in Firefox + Crome?

I currently have a e-mail field <input type="email" placeholder="E-mail"> Upon submitting / if the field is empty or the email adress doesnt validate correct, a default validation overlay ...
0
votes
2answers
74 views

Placeholder text not appearing in textarea

I know someone here can help me out. I've looked at all the forums here on the same topic, but maybe someone can help my specific case. The placeholder isn't showing up for my textarea. Here is the ...
0
votes
1answer
263 views

IE10 Validation bug with maxlength and placeholder on textbox

I have a textbox for Age: <input type="text" id="txtAge" name="txtAge" class="text" placeholder="Age (optional)" maxlength="2"> Upon clicking submit, this input is instantly bordered red. ...
0
votes
2answers
285 views

How to create a <select> placeholder

In my select elements, I want a default text such as "please select an option". Also I use the jQuery plugin Validation with my form so that the user cannot submit the form if he has not selected ...
0
votes
2answers
342 views

java swing JTextField set PlaceHolder

I create a JTextField and now i want to set the placeholder on that JTextField i don't Know how to set the placeholder on the JTextField? Please Help How to set Placeholder text on JTextField ...
0
votes
1answer
70 views

Replace default placeholder after form submit

How can I replace the default placeholder in a form (using JQuery or JavaScript) with the submitted value? Thank you! Here is a sample code: <form name="" id="RegForm" method="post" action=""> ...
0
votes
1answer
47 views

Bind live each function with a click event?

I have searched and found multiple answers simply stating to wrap my function in a click handler, although I want it to run on page load, or once my javascript has finished inserting all the html. I ...
0
votes
0answers
43 views

Filtering properties and placeholders in spring

How can I avoid repetition with spring placeholders? Usually I load all the properties and later use them one by one, repeating everything 3 times (properties file, property name from xml, placeholder ...
1
vote
0answers
65 views

Text in UITextField will not center properly

I think that my question is related to thread. I have a login screen with two UITextFields (user/pass). Both are horizontally center aligned with placeholder text. When I press a field, the ...

1 2 3 4 5 11