I did that very thing be modifying the tb_init() function in
thickbox.  Here is my modified version that uses livequery.

function tb_init(domChunk){
        $(domChunk).livequery('click',function(){
                var t = this.title || this.name || null;
                var a = this.href || this.alt;
                var g = this.rel || false;
                tb_show(t,a,g);
                this.blur();
                return false;
        });
}


On Nov 6, 8:12 pm, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
> Is this possible. i have a drop down called #sealprofile that puts an
> image into a div called #profilepreview
> i have this image set up with class="thickbox"
>
> i think i have to register a plugin or something with jquery live. how
> do i go about doing that?

Reply via email to