labu77
labu77

Reputation: 807

Textarea not clickable in firefox

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.

http://jsfiddle.net/9hksezsu/

I think it has something do to with the jscode.

Thank you very much for help.

Upvotes: 0

Views: 460

Answers (3)

vignesh.D
vignesh.D

Reputation: 776

Remove your ul class and it will work fine.

Upvotes: 0

Julo0sS
Julo0sS

Reputation: 2102

In your Javascript code, LINE 60 : remove "disableSelection()" and everything works fine ;)

Upvotes: 1

pregunta
pregunta

Reputation: 138

It's because of your list. Remove the textarea from the list and it will work fine.

Upvotes: 0

Related Questions