Try onload resizing with jquery

This commit is contained in:
Eliot Whalan 2016-06-24 16:37:21 +10:00
parent 704e1444e4
commit 62fc210f95
No known key found for this signature in database
GPG Key ID: C0A42175139840D6
1 changed files with 9 additions and 4 deletions

View File

@ -53,15 +53,20 @@
<script> <script>
$.material.init(); $.material.init();
$( document ).ready(function() {
jQuery.each(jQuery('textarea[data-autoresize]'), function() { jQuery.each(jQuery('textarea[data-autoresize]'), function() {
var offset = this.offsetHeight - this.clientHeight; var offset = this.offsetHeight - this.clientHeight;
var resizeTextarea = function(el) { var resizeTextarea = function(el) {
jQuery(el).css('height', 'auto').css('height', el.scrollHeight + offset); jQuery(el).css('height', 'auto').css('height', el.scrollHeight + offset);
}; };
jQuery(this).on('keyup input', function() { resizeTextarea(this); }).removeAttr('data-autoresize'); jQuery(this).on('keyup input', function() { resizeTextarea(this); });
});}); });
$( document ).ready(function() {
$('textarea[data-autoresize]').each(function(){
resizeTextarea(this);
});
});
</script> </script>
</body> </body>