I've added a bunch of links to a div like this:
$('#links').append('<a href="http://example.com/">Example</a>');
But when I try to loop through them with $('#links a').each
it only finds the links that are already there in the HTML.
What am I doing wrong?