I have a nice little inline editing function attached to one of my administrative pages which basically lists a whole lot of tag names currently saved on the system.
When you click on the tag name, it gets replaced by a textbox containing the name, allowing you to edit and then save your changes.
In order to make the experience a little more streamlined, I wanted to set it up so that when clicking on the tag name the text box should appear directly in its place, with all the characters in the textbox highlighted (i.e. selected) and with browser focus firmly on the box.
Achieving this turns out to be pretty simple.
Basically, plain old vanilla JavaScript already gives us the functionality to focus on an input element as well as select all characters in that element. So, we stuff that into its own little function:
function selectAllText(textbox) { textbox.focus(); textbox.select(); }
We then attach this function to the moment the textbox appears in place of the original label, binding it to the click event of the label element:
$('#tagname').click(function(){ $(this).hide(); $('#textboxtag').show(); selectAllText($('#textboxtag')); });
There, all done! (Now wasn’t that nice and simple stuff?)
You might also enjoy:
-
To toggle an element in terms of visibility, like a DIV for example, is pretty easy with jQuery and its ultra nifty toggle() function. First, simply decl ...
-
Marc-Antoine Ross has knocked together a great little jQuery plugin, or extension if you will, which gives you a nice autocomplete country selector textbox ...
-
Sometimes you just don't want to use the good old anchor tag and want to use a tag instead, but at the same time, you want people who mouse-over your span ...
-
Providing functionality to check all, uncheck all or even to invert the checkboxes currently selected on a page is pretty simple to achieve with either plai ...
-
The excellent and rather flexible jQuery plugin FancyBox has become my defacto jQuery lightbox implementation and as such it has found its way into most of ...