Created
March 22, 2012 06:11
-
-
Save pamelafox/2156602 to your computer and use it in GitHub Desktop.
TextArea AutoResizer (Bootstrap jQuery/Zepto Plugin)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var AutoResizer = function (textArea, options) { | |
var self = this; | |
this.$textArea = $(textArea); | |
this.minHeight = this.$textArea.height(); | |
this.options = $.extend({}, $.fn.autoResizer.defaults, options) | |
this.$shadowArea = $('<div></div>').css({ | |
position: 'absolute', | |
top: -10000, | |
left: -10000, | |
fontSize: this.$textArea.css('fontSize') || 'inherit', | |
fontFamily: this.$textArea.css('fontFamily') || 'inherit', | |
lineHeight: this.$textArea.css('lineHeight') || 'inherit', | |
resize: 'none' | |
}).appendTo(document.body); | |
var startWidth = this.$textArea.width() || $(window).width(); | |
this.$shadowArea.width(startWidth); | |
if (this.options.resizeOnChange) { | |
function onChange() { | |
window.setTimeout(function() { | |
self.checkResize(); | |
}, 0); | |
} | |
this.$textArea.change(onChange).keyup(onChange).keydown(onChange).focus(onChange); | |
} | |
this.checkResize(); | |
}; | |
AutoResizer.prototype = { | |
constructor: AutoResizer, | |
checkResize: function() { | |
// No sense in auto-growing non-visible textarea, which height of 0 implies | |
if (this.$textArea.height() === 0) { | |
return; | |
} | |
// If this is first time we've seen text area rendered, remember the height | |
if (this.minHeight === 0) { | |
this.minHeight = this.$textArea.height(); | |
} | |
// If the text area has changed in size past a certain threshold of difference | |
// like when it becomes visible or viewport changes | |
if (this.$textArea.width() !== 0 && Math.abs(this.$shadowArea.width() - this.$textArea.width()) > 20) { | |
this.$shadowArea.width(this.$textArea.width()); | |
} | |
var val = this.$textArea.val().replace(/</g, '<') | |
.replace(/>/g, '>') | |
.replace(/&/g, '&') | |
.replace(/\n/g, '<br/> '); | |
if ($.trim(val) === '') { | |
val = 'a'; | |
} | |
this.$shadowArea.html(val); | |
var nextHeight = Math.max(this.$shadowArea[0].offsetHeight + 10, this.minHeight); | |
if (!this.prevHeight || nextHeight != this.prevHeight) { | |
this.$textArea.css('height', nextHeight); | |
this.prevHeight = nextHeight; | |
} | |
} | |
}; | |
$.fn.autoResizer = function ( option ) { | |
return this.each(function () { | |
var $this = $(this) | |
, data = $this.data('autoresizer') | |
, options = typeof option == 'object' && option | |
if (!data) $this.data('autoresizer', (data = new AutoResizer(this, options))) | |
if (typeof option == 'string') data[option]() | |
else data.checkResize() | |
}) | |
} | |
$.fn.autoResizer.defaults = { | |
resizeOnChange: true | |
}; | |
$.fn.autoResizer.Constructor = AutoResizer; |
There are some issues with backspace.
On Sat, Mar 24, 2012 at 3:19 PM, Le Roux Bodenstein < ***@***.*** > wrote:
Here's a jsfiddle: http://jsfiddle.net/lerouxb/vRSP2/
Apart from being simpler it also has the benefit of not momentarily
flashing a scrollbar. It isn't very smart about sizing back down again,
though.
---
Reply to this email directly or view it on GitHub:
https://gist.github.com/2156602
##
Cordialement
Djordje Lukic
Ok, sorry for the double post :)
and now? http://jsfiddle.net/lerouxb/vRSP2/
Why dose the content jump as you continue to press enter? Tried it on facebook post comment textarea and it was seamless.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There are some issues with backspace.