Here's a working version, pretty barebones: http://mooshell.net/vCSmq/2
--Daniel
On 2009-11-27, at 27/November, 11:03 AM, Jake wrote:
> Hmmm, yes I see from some examples I found. I'm starting to
> understand.
>
> For testing, I've changed the listener code to this:
>
> $('link-list').addEvent('click:relay(a)', function(){
> alert('You clicked a link!');
> });
>
> Which is essentially the same as And in the page body:
>
> ...
>
> <ul id="link-list">
>
> ( Dynamically added <li><a href="javascript: void();"> ... </a></li>
> blocks... )
>
> </ul>
>
> Yet there is no alert. What am I missing?