I would like to have (preferrably in jQuery) regular text input box which can be clicked and dragged by its right-bottom corner (e.g. like textareas have in Chrome) and resized by user ?
Can't find any jQuery plugin already implementing this. Can anybody give me hint if something like this exists or how could it be easily implemented ?
Thank you in advance.
EDIT: I want to be resizable similarly like textarea is in Chrome...
<input type="text" />
to be resizable? Or would you like the<textarea>
behavior of Chrome and Firefox replicated to all browsers? – Mccaskill<input type="text" />
element is pointless, you won't magically convert it to a textarea, it'll remain a single line element. Unless you are looking for horizontal extension which might be usefull in some cases. – Nerveracking