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.
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 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:
Also for each clear text link (x) we add an onclick handler where we clear the corresponding textbox and set focus in it.
Java URL Encoder/Decoder Example - In this tutorial we will see how to URL encode/decode…
Show Multiple Examples in OpenAPI - OpenAPI (aka Swagger) Specifications has become a defecto standard…
Local WordPress using Docker - Running a local WordPress development environment is crucial for testing…
1. JWT Token Overview JSON Web Token (JWT) is an open standard defines a compact…
GraphQL Subscription provides a great way of building real-time API. In this tutorial we will…
1. Overview Spring Boot Webflux DynamoDB Integration tests - In this tutorial we will see…
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
Thanks alot
not work if go with autofocus.....
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
Example doesn't work ? (IE9)
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().
Thanks Andrew.. I have fixed the plugin now.
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.
Cool
BUT I would like to change a object on the DOM when I click the (X)
wow