Created
November 27, 2013 11:01
-
-
Save satyatechsavy/7673942 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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