Ich möchte die Breite eines Textfeldes so einstellen, dass sie der Breite eines bestimmten Bildes entspricht. Mit .width()
funktioniert das, um die Breite eines Bildes einzustellen, aber nicht für ein Textfeld.
$(document).ready(function() {
var width = $("#my_image").width();
$("#another_image").width(width); // funktioniert
$("#my_textarea").width(width); // schlägt fehl
});
Wie kann ich die Breite eines Textfeldes einstellen?