开发者

How to fix dynamic added elements aren't dragging or sorting jquery

I have one button, and when i click it it adds elements that are with same class, for example my cla开发者_高级运维ss is image_class, the default added elements are being dragged, but when i add new element with the class i can't drag it or sort it.How can i fix that ?I want when dynamically added element shows up to be dragged or sorted .There is no problem with the default ones.

I'm using jquery ui


Okay, here's one way of doing it (and since I have no idea what your button code does...)

http://jsfiddle.net/TrowthePlow/qZz5j/


By default, events are added at runtime and not bound to elements created after the point of binding, even when they have the same selector.

To make sure that events are bound to items with the same selector dynamically, make sure you use the jQuery live method to bind your events.

$('.clickme').live('click', function() {
  // Live handler called.
});
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜