Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. // JavaScript Document
  2. $( document ).ready(function() {
  3. $('.button').click(function(e) {
  4. e.preventDefault(); // Stops the browser from following the href in the <a>
  5. var that = $(this)
  6. , id = that.attr('id')
  7. , url = 'questions/' + id + '.html'
  8. ;
  9. $.post(url, function(data) {
  10. $('#replace').html(data); // Display external file to target div
  11. window.scrollTo(0, 0); // Forces a scroll back to the top of the page
  12. });
  13. });
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement