How can I get an Icon after resizable textarea in the same row?
I am trying to get on one line a label, a resizable textarea and an icon for looking up a value. Unfortunately the icon is displayed on the next line instead of on the same line.
The code is as follows:
<div class="row">
<label>Label text</label>
<textarea class='resize">Textarea text....</textarea>
<img class="iconname inline">
</div>
$(.textarea).resizable({handles:"se"});
The problem is that the image is displayed under the textarea and not after on the same line.
When I remove the "resizable" the image it is displayed correctly.
for a complete example see:
http://digirent.nl/examples/textarea.html
Any help is appreciated