Skip to content

Instantly share code, notes, and snippets.

@satyatechsavy
Created November 27, 2013 11:01
Show Gist options
  • Save satyatechsavy/7673942 to your computer and use it in GitHub Desktop.
Save satyatechsavy/7673942 to your computer and use it in GitHub Desktop.
<a onclick='return load_more_faqs();'> Load more FAQs</a>
function load_more_faqs {
$.ajax({url:'more_faqs',
success:function(data) { $('#faqs').append(data);}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment