Create a Clearable TextBox with jQuery


Recently I came across a wonderful article by David Walsh on Clearable Textboxes with Dojo Toolkit [link]. This is a simple implementation where a clear button (x) added in a textbox which lets user to clear the content of the textbox. I have seen this simple feature in many websites and feel its very useful to have. It increase the usability of form.

I thought to implement the same feature using jQuery. Here is a simple plugin that I wrote to add clearable feature to any textbox in your HTML form. All you need is to call clearable() method on the textbox. For example.

... ... <script type="text/javascript" src="jquery.clearable.js"></script> <link rel="stylesheet" href="jquery.clearable.css" type="text/css" media="screen" /> ... ... <input type="text" class="foo"></input> <script> $(document).ready(function() { $('.foo').clearable(); }); </scrip>
Code language: HTML, XML (xml)

In above example we included jquery.clearable plugin javascript and stylesheet files. Then called .clearable() method on the textboxes we want to add clearable feature. That’s it :-)

Let us go through the code and see what exactly goes behind the scene in jquery clearable plugin.

The CSS

We use following stylesheet classes internally to display the

.divclearable { border: 1px solid #888; display: -moz-inline-stack; display: inline-block; zoom:1; *display:inline; padding-right:5px; vertical-align:middle; } a.clearlink { background: url("close-button.png") no-repeat scroll 0 0 transparent; background-position: center center; cursor: pointer; display: -moz-inline-stack; display: inline-block; zoom:1; *display:inline; height: 12px; width: 12px; z-index: 2000; border: 0px solid; }
Code language: CSS (css)

There are two css classes we uses in clearable plugin. First one is for a wrapper DIV which wraps around the textbox and clear button (x). And the style class is for clear button (x).

The JavaScript

The important bit of the plugin is javascript code that creates clearable effect. For everytextbox, we wrap it around a DIV container and also add one clear button (x) in this container DIV.

Here is the jQuery code:

$(this).css({'border-width': '0px', 'outline': 'none'}) .wrap('<div id="sq" class="divclearable"></div>') .parent() .attr('class', $(this).attr('class') + ' divclearable') .append('<a class="clearlink" href="javascript:"></a>'); $('.clearlink') .attr('title', 'Click to clear this textbox') .click(function() { $(this).prev().val('').focus(); });
Code language: JavaScript (javascript)

In above javascript code, we do:

  1. Remove border and outline of the textbox where we want to add clearable feature
  2. Create a DIV wrapper and wrap the textbox with that DIV
  3. Add the textbox style class to DIV, so the border / background etc that are specified on textbox are added to DIV
  4. Create a link for clear text(x) and append in the DIV

Also for each clear text link (x) we add an onclick handler where we clear the corresponding textbox and set focus in it.

Try Demo

View demo

Download jQuery Clearable Plugin

Clearable plugin (zip, 4kb)

View Comments

  • Thanks!

    2 extra features would be great:

    The clear button (x) does not show until a user has actually typed a character in the field
    As you are about to hover/click the (x) button, it should also visually change - maybe go darker

  • Hi,

    The clear button (x) does not show until a user has actually typed a character in the field.Could you please provide one sample program?

    Thanks

  • FYI, you are including jquery-latest.js (1.9.0) and they have removed the .live() event which is breaking your code and demo. Needs to be replaced with .on().

  • Code still doesn't seem to work (Chrome Latest)
    You need to close [code language="html"]<script>[/code] properly because you put [code language="html"]</scrip>[/code]

    I have also no idea why but in the example (downloadable) the icon is not showing (at all).
    I can use your demo that is on the website though!??

  • I've been searching for a way to do this for awhile after I saw the jquery xeditable plugin. I'm too much of a js/jquery noob to try and recreate it from scratch so Thank you for providing the groundwork for me. It's a great feature to have.

Share
Published by
Viral Patel
Tags: JQuery jquery tips tricks jquery ui tutorial

Recent Posts

  • Java

Java URL Encoder/Decoder Example

Java URL Encoder/Decoder Example - In this tutorial we will see how to URL encode/decode…

4 years ago
  • General

How to Show Multiple Examples in OpenAPI Spec

Show Multiple Examples in OpenAPI - OpenAPI (aka Swagger) Specifications has become a defecto standard…

4 years ago
  • General

How to Run Local WordPress using Docker

Local WordPress using Docker - Running a local WordPress development environment is crucial for testing…

4 years ago
  • Java

Create and Validate JWT Token in Java using JJWT

1. JWT Token Overview JSON Web Token (JWT) is an open standard defines a compact…

4 years ago
  • Spring Boot

Spring Boot GraphQL Subscription Realtime API

GraphQL Subscription provides a great way of building real-time API. In this tutorial we will…

4 years ago
  • Spring Boot

Spring Boot DynamoDB Integration Test using Testcontainers

1. Overview Spring Boot Webflux DynamoDB Integration tests - In this tutorial we will see…

4 years ago