Skip to content

Instantly share code, notes, and snippets.

@mmalmeida
Created May 4, 2012 11:33
Show Gist options
  • Save mmalmeida/2594260 to your computer and use it in GitHub Desktop.
Save mmalmeida/2594260 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
$(document).ready(function(){
$('.pagelinks a').click(function(event) {
event.preventDefault();
$.ajax({
url:$(this).attr('href'),
cache: false,
success: function (html) {
$("#singleAnswerAudit").remove();
$(".cluetip-inner").append(html);
}
});
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment