Reputation: 807
A expanding textarea is not clickable in the firefox browser. Chrome, IE and mobile browsers work.
<div id="image-upload" class="panel">
<ul class="imagelist-uploader">
<li>
<textarea class="inputbox image-comment" name="comment_list[0]" placeholder="Description">Default Text</textarea>
</li>
</ul>
</div>
I added the simple code to jsfiddle. Click with chrome at the default text to watch the behavior.
I think it has something do to with the jscode.
Thank you very much for help.
Upvotes: 0
Views: 460
Reputation: 2102
In your Javascript code, LINE 60 : remove "disableSelection()" and everything works fine ;)
Upvotes: 1
Reputation: 138
It's because of your list. Remove the textarea from the list and it will work fine.
Upvotes: 0