Guest User

Untitled

a guest
Oct 20th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. $(document).ready(function () {
  2. $('#main').load('pages/home.php');
  3.  
  4. $('ul#navMenu li a').click(function() {
  5. var page = $(this).attr('href');
  6. $('#main').load('pages/' + page + '.php');
  7. return false;
  8. });
  9.  
  10. });
Add Comment
Please, Sign In to add comment