Problem With JQuery Colorbox
I have a website that uses ajax jquery and colorbox. Inside the div '#content' there are some links to other pages that open fine using colorbox. If I reload the content of that di
Solution 1:
try to attach your handler using live
instead of bind
. This survives content-reloads in the divs
the api doc for live is here
Solution 2:
You will have to use the live() method or delegate
method for dynamic generated content events.
Post a Comment for "Problem With JQuery Colorbox"