admin管理员组文章数量:1349717
A while ago I've solve an issue for someone that wanted his textarea to grow. I've made a function that listens to the scroll
and keyup
events of the area and recalculates the number of rows. I wanted to use the code in another project, but there's a problem. The textarea's are not know To solve this, I'm using live
instead of bind
, so that future area's will be bound as well.
Now I'm finding that the live
executes a lot slower than a bind
. I've created a simplified example on jsFiddle. The upper textarea behaves as I want, but newly added ones flicker due to the late signaling (I'm using Chrome).
How can I make the The problem is that the live
as fast as the bind
?scroll
can't be used with a live
statement. Is there a way to enable scroll
for live
? Is there maybe a jQuery event that signals me that a new TextArea has been added, so I can use a bind to add the scroll
on the newly created element?
I'm looking forward to your ideas.
EDIT: Changed link to the code. Removed scrollingCode. Added another button to create a different textarea. The problem has to do with 'scroll'. It doesn't fire.
Clarification: I will not know what function will create the textarea's. I see flickering on the dynamically added boxes in Chrome.
For future readers:
In jQuery 1.3.x only the following JavaScript events (in addition to custom events) could be bound with .live():
click, dblclick, keydown, keypress, keyup, mousedown, mousemove, mouseout, mouseover, and mouseup
. As of jQuery 1.4 the .live() method supports custom events as well as all JavaScript events that bubble. As of jQuery 1.4.1 even focus and blur work with live (mapping to the more appropriate, bubbling, events focusin and focusout). As of jQuery 1.4.1 the hover event can be specified (mapping to mouseenter and mouseleave, which, in turn, are mapped to mouseover and mouseout).
A while ago I've solve an issue for someone that wanted his textarea to grow. I've made a function that listens to the scroll
and keyup
events of the area and recalculates the number of rows. I wanted to use the code in another project, but there's a problem. The textarea's are not know To solve this, I'm using live
instead of bind
, so that future area's will be bound as well.
Now I'm finding that the live
executes a lot slower than a bind
. I've created a simplified example on jsFiddle. The upper textarea behaves as I want, but newly added ones flicker due to the late signaling (I'm using Chrome).
How can I make the The problem is that the live
as fast as the bind
?scroll
can't be used with a live
statement. Is there a way to enable scroll
for live
? Is there maybe a jQuery event that signals me that a new TextArea has been added, so I can use a bind to add the scroll
on the newly created element?
I'm looking forward to your ideas.
EDIT: Changed link to the code. Removed scrollingCode. Added another button to create a different textarea. The problem has to do with 'scroll'. It doesn't fire.
Clarification: I will not know what function will create the textarea's. I see flickering on the dynamically added boxes in Chrome.
For future readers:
Share Improve this question edited May 23, 2017 at 12:18 CommunityBot 11 silver badge asked Jan 22, 2011 at 15:28 Kees C. BakkerKees C. Bakker 33.5k31 gold badges118 silver badges207 bronze badges 16In jQuery 1.3.x only the following JavaScript events (in addition to custom events) could be bound with .live():
click, dblclick, keydown, keypress, keyup, mousedown, mousemove, mouseout, mouseover, and mouseup
. As of jQuery 1.4 the .live() method supports custom events as well as all JavaScript events that bubble. As of jQuery 1.4.1 even focus and blur work with live (mapping to the more appropriate, bubbling, events focusin and focusout). As of jQuery 1.4.1 the hover event can be specified (mapping to mouseenter and mouseleave, which, in turn, are mapped to mouseover and mouseout).
- @Pointy yeah, that's true, that's why I'm making a textarea that will be big enough so it can't scroll. I only scrolls ever so lightly when the user inputs new data and it fires before the keyup. Try and remove the scroll from the example and you'll see that it won't go as smooth. – Kees C. Bakker Commented Jan 22, 2011 at 15:34
- @Kees yes I see that after playing with it. Your jsFiddle hangs my browser when I try typing in the "static" textarea, and it works fine I guess when I type in an added textarea. One thing: why does the code call "scrollTop(0)" in the enlarge/reduce loops? – Pointy Commented Jan 22, 2011 at 15:36
- @Pointy elem.scrollTop(0); can be removed :-). It was from something I was trying :P. – Kees C. Bakker Commented Jan 22, 2011 at 15:38
- @Pointy I'm seeing the same performance drop. When I kill the 'live' event the 'bind' does a good job. But with 'bind' and 'live' my browser hangs a bit as well. Werid! – Kees C. Bakker Commented Jan 22, 2011 at 15:44
-
1
@galambalazs you can get it even shorter!
elem.height(1); elem.height(elem[0].scrollHeight - elem[0].clientHeight + elem.height());
- that works both for getting bigger and getting smaller. – Pointy Commented Jan 22, 2011 at 18:45
4 Answers
Reset to default 4The answer is simple. scroll
is what prevents the flickering, because it fires at the very first moment of resize. But scroll
has no effect with live
(because it doesn't bubble), so your newly created textareas will be resized on keyup
but it fires later (thus the flickering).
Update: Of course I can even solve your problem. You just need to ask :) [Demo]
$('textarea.autoresize').live('keyup', function() {
var el = $(this);
if (!el.data("has-scroll")) {
el.data("has-scroll", true);
el.scroll(function(){
resizeTextArea(el);
});
}
resizeTextArea(el);
});
The point is, it mixes live
with bind
. The keyup
event, which fires on all elements (because of live
), adds the unique scroll
event conditionally.
Update 2: Oh, and by the way your whole resizing code can be better written as:
// resize text area (fixed version of Pointy's)
function resizeTextArea(elem) {
elem.height(1); elem.scrollTop(0);
elem.height(elem[0].scrollHeight - elem[0].clientHeight + elem.height())
}
Try this (JSFiddle):
$('#Add').click(function(){
var id = "newtextarea"+Math.floor(Math.random()*1000);
$('#pane').append($('<textarea class="new" rows="1" cols="40" id="'+id+'"></textarea><br/>'));
$('textarea:last').focus();
bindAgain(id);
});
//inital resize
resizeTextArea($('#tst'));
//'live' event
$('textarea.new').bind('keyup scroll', function() {
resizeTextArea($(this));
});
function bindAgain(id)
{
$('#'+id).bind('keyup scroll', function() {
resizeTextArea($(this));
});
}
Basically, it rebinds the event using a dynamically created ID. Not as elegant as karim79's solution, but it works.
I bind it to a custom event that I call whenever something important happens. Like this:
$(body).live('MyCustomEvent', function() {
$("#MyScrollItem").scroll(function() {
// Do things here
}
});
Hope that helps. Short and sweet.
I found a solution to this problem: The problem is where .live and scroll doesnt work.
My solution is to use the bind event.. and Timeout. The timeout will give the DOM time to update eg.
The below code is used to load content when you scroll to the bottom of the page. Take a look at the setTimeout and the bind.
$('.list').bind("scroll",function(){
$('.list').height()));
if($('.list').scrollTop() >= ($('.list').height()+ $(window).height())){
setTimeout(function(){ //Time out is used as there is a possibility that
last_function();
},200);
}
});
本文标签: javascriptHow bind the scroll event on a Live()Stack Overflow
版权声明:本文标题:javascript - How bind the scroll event on a Live()? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743850351a2549892.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论