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...
You don't need jQuery to handle this. What you need is css.
This will allow your text input to have the resize option on the right
Have you looked at the jQuery UI resizable widget?
Here is the source code for just the resizable example.
Anno 2016 it is a bit more complicated. You need to wrap the
<input>
in an "inline-block" that you made resizable: