开发者

Lightbox that works with dynamically loaded html

I'm currently using a read more function on the frontpage of my site to load in larger sections of articles. It loads from a seperate html file a div with the id mainarticle. It makes use of the jQuery function .load() but the lightbox within this section does not work.

I know it is something to do with .live() but I am unable to pinpoint the function that I need to change to a live() function.

I开发者_运维知识库'm currently using jQuery lightbox; does anyone know of an existing lightbox that works with loaded in content, or how I can modify one to work?

Thanks.


What live does, is attach events to elements that exist on page or will appear on page.

You probably have lightbox open bound to some elements click event. change that code from

$('element').bind('click', function(event){
  open lightbox here
});

to

$('element').live('click', function(event){
  open lightbox here
});

and you are done.

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜