Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm wondering if there is a quick way to create an input text element with an icon on the right to clear the input element itself (like the google search box).

I looked around but I only found how to put an icon as background of the input element.

Is there a jQuery plugin or something else?

thanks

EDIT: I want the icon inside the input text element

something like:

--------------------------------------------------
|                                               X|
--------------------------------------------------
share|improve this question
3  
A jQuery plugin to position an image over an input box? Am I missing something or what?! – Christian Jun 6 '11 at 22:19
Buona sera Giovanni! Huh, maybe i'm not in time but look at my answer! It's more 'Googlish' and it hides the 'icon' if there is no text visible. :) give it a try! good luck! – Roko C. Buljan Jun 6 '11 at 22:47
@Christian Sciberras As you can see from the answer I chose, it can be a jquery plugin... – Giovanni Di Milia Jun 8 '11 at 17:04
1  
You can have a jQuery plugin to show plain alert boxes. It doesn't mean you really have to, and in most cases, it is over-engineered bloat. Oh and by the way, what you selected isn't a jQuery plugin, but a mix of javascript, html and css. A plugin would be a single file/script with the jQuery signature containing the relevant details. – Christian Jun 8 '11 at 19:26
@Christian Sciberras: I can distinguish between a jQuery plugin and a mix of javascript and CSS. What I was saying is that if you want to do something nice, you cannot put only an image on an input box. – Giovanni Di Milia Jun 8 '11 at 21:40

8 Answers

up vote 34 down vote accepted

Here is a neat demonstration:

  • It hides the 'clear' button if there is no text
  • handles paste event and other input change events

jsFiddle demo

search_box

The code:

$(document).on('propertychange keyup input paste', 'input.data_field', function(){
    var io = $(this).val().length ? 1 : 0 ;
    $(this).next('.icon_clear').stop().fadeTo(300,io);
}).on('click', '.icon_clear', function() {
    $(this).delay(300).fadeTo(300,0).prev('input').val('');
});

Instead $(document) you can set an input parent element.

HTML:

<span class="clearable">
    <input class="data_field" type="text" name="data_field" value="" />
    <span class="icon_clear">x</span>
</span>

CSS magic:

.clearable{
    position:relative;
}
.data_field{
    padding-right:17px; /* add space for the 'x' icon*/
}
span.icon_clear{
    position:absolute;
    right:10px;    
    display:none;

    /* now go with the styling */
    cursor:pointer;
    font: bold 1em sans-serif;
    color:#38468F;  
    }
    span.icon_clear:hover{
        color:#f52;
    }
share|improve this answer
1  
I took the liberty of borrowing some of the ideas in this code to make a tag cloud generator (with pure css tags and upvote and downvote buttons). I hope it looks ok in your browser; check it out at jsfiddle.net/7PnKS – mrBorna Sep 1 '11 at 18:29
which to be displayed when the input not empty either after submit without focus on – khaled_webdev Nov 22 '12 at 10:09
1  
saved another day thanks – Ahmed Samy Mar 18 at 22:33
@roXon that's a nice example, but unfortunately it's going to cause a blur event as soon as one clicks the "X". And often times, blur events are handling input validations. I guess I'd have to stop that in the click function? – tim Mar 25 at 17:55
@tim jsfiddle.net/PJZmv/1326 Just reassign .focus() to the input element. – Roko C. Buljan Mar 25 at 18:06

You could use a reset button styled with an image...

<form action="" method="get">
   <input type="text" name="search" required="required" placeholder="type here" />
   <input type="reset" value="" alt="clear" />
</form>

<style>
   input[type="text"]
   {
      height: 38px;
      font-size: 15pt;
   }

   input[type="text"]:invalid + input[type="reset"]{
     display: none;
   } 

   input[type="reset"]
   {
      background-image: url( http://png-5.findicons.com/files/icons/1150/tango/32/edit_clear.png );
      background-position: center center;
      background-repeat: no-repeat;
      height: 38px;
      width: 38px;
      border: none;
      background-color: transparent;
      cursor: pointer;
      position: relative;
      top: -9px;
      left: -44px;
   }
</style>

See it in action here: http://jsbin.com/uloli3/63

share|improve this answer
I think this is what I was looking for! – Giovanni Di Milia Jun 6 '11 at 22:13
3  
This resets the whole form, not just one field – Nick Gorbikoff Oct 29 '12 at 15:11
How to hide reset image when the input is empty? Could you, KOGI give a live example? – learnJQueryUI Apr 10 at 14:53
@learnJQueryUI, updated to show this. – KOGI Apr 10 at 16:56

Could I suggest, if you're okay with this being limited to html 5 compliant browsers, simply using:

<input type="search" />

JS Fiddle demo

Admittedly, in Chromium (Ubuntu 11.04), this does require there to be text inside the input element before the clear-text image/functionality will appear.

Reference:

share|improve this answer

EDIT: I found this link. Hope it helps. http://viralpatel.net/blogs/2011/02/clearable-textbox-jquery.html

You have mentioned you want it on the right of the input text. So, the best way would be to create an image next to the input box. If you are looking something inside the box, you can use background image but you may not be able to write a script to clear the box.

So, insert and image and write a JavaScript code to clear the textbox.

share|improve this answer
I was meaning on the right of the input box, but inside the input itself, like google does – Giovanni Di Milia Jun 6 '11 at 22:06
Use a background-image that mimics a button and use the following code <input type="text" name="Search" value="Search..." onclick="this.value='';"> – Jaspero Jun 6 '11 at 22:08
this is not what I want to do: I want an icon that only if clicked clears the input.... – Giovanni Di Milia Jun 6 '11 at 22:10
Please see my edit. That might help. – Jaspero Jun 6 '11 at 22:23

If you want it like Google, then you should know that the "X" isn't actually inside the <input> -- they're next to each other with the outer container styled to appear like the text box.

HTML:

<form>
    <span class="x-input">
        <input type="text" class="x-input-text" />
        <input type="reset" />
    </span>
</form>

CSS:

.x-input {
    border: 1px solid #ccc;
}

.x-input input.x-input-text {
    border: 0;
    outline: 0;
}

Example: http://jsfiddle.net/VTvNX/

share|improve this answer

Since none of the solutions flying around really met our requirements, we came up with a simple jQuery plugin called jQuery-ClearSearch -

using it is as easy as:

<input class="clearable" type="text" placeholder="search">

<script type="text/javascript">
    $('.clearable').clearSearch();
</script>

​ Example: http://jsfiddle.net/wldaunfr/FERw3/

share|improve this answer

Here's a jQuery plugin (and a demo at the end).

http://jsfiddle.net/e4qhW/3/

I did it mostly to illustrate an example (and a personal challenge). Although upvotes are welcome, the other answers are well handed out on time and deserve their due recognition.

Still, in my opinion, it is over-engineered bloat (unless it makes part of a UI library).

share|improve this answer

I have written a simple component using jQuery and bootstrap. Give it a try: https://github.com/mahpour/bootstrap-input-clear-button

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.