Avatar of Ezan Javeed
Ezan Javeed
Flag for Australia asked on

how to get caption in the textbox in css or javascript or php

Hi Everyone,
I have attached 3 sample images . i would like to understand how to have caption text in the textbox and when cursor inserted in the text box it vanished.

And a search button inside the textbox itself. you may notice ee also using it .(check the image)
further more if the textbox is not filled up correctly you notice(" ! ")inside the textbox.. (check the images attached )

is that done via css or  html or javascript .or php. need example so i can implement

Thanks
how-to-get-this.jpg
how.jpg
-mark-if-its-not-field-correctly-or-left
CSSHTMLJavaScript

Avatar of undefined
Last Comment
Ezan Javeed

8/22/2022 - Mon
ASKER CERTIFIED SOLUTION
Gary

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Kyle Hamilton

for search input you have a couple options. you could go with html5, but it only works in modern browsers (ie10+) and the appearance will be dictated by the browser.
<input id="mysearch" type="search" />

or, you write it with css and use a background image of a magnifying glass inside the input.

for the exlamation marks, that's called validation, and you can do it clientside via javascript. if you're using jquery, then the validate plugin is the most ubiquitous. the appearance of erroneous fields (incldung the !) is set via css.

if you. eed a more specific solution, please post a link to your page
Ezan Javeed

ASKER
Please provide me example or sample code.. in jquery and CSS for 3 issues..

Thanks
Kyle Hamilton

there are plenty of examples on the web. you need to find something that is close to what you want to acheive, create a page or a jsfiddle, and share the link. as the asker of the question it is your responsibility to do the leg work.
Your help has saved me hundreds of hours of internet surfing.
fblack61
Kyle Hamilton

at an absolute minimum, you need to provide a page with input fields, and a reference to jquery, as well as the icons you would like to use fir the search field and the error states. jsfiddle.com makes this very easy.
Ezan Javeed

ASKER
Kyle/Gary thanks

got one issue resolved.
https://mathiasbynens.be/demo/placeholder

search (zoom logo)and its functionality still couldn't work out.
and plus the (!) as mentioned in the pic..

yes i am working on it.. design just finished now i am on the coding side ..
Gary

The zoom image is just a simple image placed after your input box - it's nothing special
And Kyle has already told you about the jquery validations for indicating a field is wrong.
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
Ezan Javeed

ASKER
Gary,
I am looking for coding.. thought the zoom is the image thing. i am unable to figure out how to code the background image to work as search query when clicked.

validation is cool too but if i see the code of an existing one or plugin perhaps i can use it on the site

i am unable to post the link as its for personal customer where i am working on design and try to get in coding done.it may take some time to understand once i know how .

appreciate your input