Advertisement
Guest User

Untitled

a guest
May 28th, 2017
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function menuAJAX() {
  2.     $('#menu li ul li a').click(
  3.         $.ajax({
  4.             url: this.href,
  5.             success: function(html) {$("#content").html("hi");}
  6.         })
  7.     );
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement