jQuery.expandingTextarea ne fonctionne pas dans une table

Lors de l’exécution du plugin jQuery bgrins / ExpandingTextareas ( github ), les balises

css

 table { width: 100%; table-layout: fixed; } textarea { border: none; width: 100%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } 

scénario

 $("textarea").expandingTextarea({ resize: function() //callback { var i=$('textarea').height(); //inspect the textarea and cell containing it, height difference is 4. $('#expand').attr('height',i+4+'px'); } })