my site is ajax-based. I have some div with id=content and it's generated dynamically by .get-request (from jquery). The problem is that inside content there are links: <a href="site.com/#some_hash">text</a> and it should reload page applying to logic that some_hash. How can I grab click at such links and reload page?
$('.content a').bind('click', function() {
alert('Clicked!');
});
This doesn't alert.