Skip to content

Instantly share code, notes, and snippets.

@wilornel
Created April 23, 2012 02:42
Show Gist options
  • Save wilornel/2468448 to your computer and use it in GitHub Desktop.
Save wilornel/2468448 to your computer and use it in GitHub Desktop.
$('#search').click(function(){
$.ajax({
url: "search.php",
}).done(function(result){
$('#results').replaceWith('<div class="someclass">sometext</div>');
$('.ad').bind('click');
});
});
$('.someclass').on('click', function(){
console.log('adsasdasdasd');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment