[jQuery] I need some help with basic thing
$('a#addsuggest2').click(function() {
alert('working');
});
$('a#addsuggest').click(function() {
//alert('working');
$('#message').html('<a href="#" id="addsuggest2">add</a>');
});
<a href="addsuggest">Add</a>
<div id="#message"></div>
what is wrong? When I click on second add link (addsuggest2) nothing
happens