[jQuery] Re: Can't assign jQuery jqModal to dynamically added links

2009-09-21 Thread Fumigator
I too am trying to get this to work. I'm using live() instead of bind (). Unfortunately, the problem is the content that is supposed to load via ajax never makes it to the modal. Any suggestions? On Sep 2, 4:57 am, Liam Potter wrote: > Use live instead of bind > > $("#jqmodalbind").live("clic

[jQuery] Re: Can't assign jQuery jqModal to dynamically added links

2009-09-02 Thread Liam Potter
Use live instead of bind $("#jqmodalbind").live("click", function(e){ alert('Binding JQModal'); $('#addnote').jqm({ajax: '@rel', trigger: '.addnotetrigger'}); }); neburton wrote: I've been having problems getting jqmodal modal dialogs to display on links added dynamically by client sid