in short, i have a page where the content is being loaded with jquery load(). the problem is when i am trying to select.
$('a.selected_class').click(function(e){
alert('alert');
e.preventDefault();
});
(inside document ready) works on the first page, but on any subsequent pages (that are loaded using $(this).load(url); into a div), the selector stops working.
any tips?