hi,
i have menubar.click menubar content
load the particular url in this page.
$(document).ready(function(){
$('#menubar li a').click(function(e){
e.preventDefault();
$('#userpersonal').load("http://localhost/user/web/personal/index");
});
});
what is the problem in my code.
plz help me