I am trying to change the height of my textarea. Zurb's Foundation has already defined a height of 5rem !important
.
Now, when I try to change my height using jQuery, it doesn't change. I tried:
$('textarea').height('500px')
$('textarea').css('height', '500px', 'important);
and nothing works. The CSS of any other property does change with .css()
. What can I do?