Guest User

Untitled

a guest
Feb 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. $(document).ready(function() {
  2. if (String(window.location).match(/#/i)) {
  3. matches = String(window.location).match(/#(.*)/)
  4. $('#contents').load(matches[1] + '.html #container #contents *');
  5. }
  6.  
  7. $('ul li').find('a').each(function(i, link) {
  8. $(this).click(function(i, a) {
  9. var uri = $(this).attr('href');
  10. $('#contents').empty();
  11. $('#contents').load(uri + ' #container #contents *');
  12.  
  13. window.location = '#' + uri.replace(/.html/, '');
  14. return false;
  15. });
  16. });
  17. });
Add Comment
Please, Sign In to add comment