$.post menu building problem
Hello I'm very new in jquery
I'm trying to build multi level menu it is working but kind of slow can you please advise me what i'm doing wrong
thanks in advance
(function(){
$('li a').on('click',function(e){
var href = $(this).attr('href');
//alert(href);
$.post('child.php',{ id : href }
, function(data)
{
if (data){
$('body').html(data).on('click',function(e){
e.preventDefault();
$('li a').on('click',function(e)
{
var href = $(this).attr('href');
e.preventDefault();
$.post('child.php',{ id : href }
, function(data)
{
if (data){
$('body').html(data);
}
});
});
//alert();
});
}
});
e.preventDefault();
});
})();