[jQuery] How to apply thickbox effect to a loaded ajax content?
I need to keeping applying Thickbox effect to a ajax content like
bellow:
Before click on button to load ajax content:
<script>
...
$("#loadhere").load('http://localhost/test/moreinfo.php?id=1');
</script>
<div id="loadhere"></div>
After loaded content, i got it in memory:
<div id="loadhere">
<a href="teste.html?
keepThis=true&TB_iframe=true&width=640&height=350"
class="thickbox">click here for more info</a>
</div>
But thickbox effect doesn't work... i'm beeing redirected to
teste.html and the window doesn't open.
How to fix this?