How to make text input box resizable (like textarea) by dragging its right-bottom corner using jQuery?

前端 未结 4 512
既然无缘
既然无缘 2021-02-05 16:24

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

4条回答
  •  青春惊慌失措
    2021-02-05 17:11

    You don't need jQuery to handle this. What you need is css.

    #yourTextInput{
    resize:both;
    }
    

    This will allow your text input to have the resize option on the right

提交回复
热议问题