I want to set the width of the text area to fit the width of a particular image. Using .width() works to set the width of the image, but not the text area.
$(document).ready(function() { var width = $("#my_image").width(); $("#another_image").width(width);
How to set the width of the text area?
AP257
source share