
Untitled
By: a guest on
Aug 10th, 2012 | syntax:
jQuery | size: 0.60 KB | hits: 20 | expires: Never
$(document).ready(function(){
$('#menu-topo a').live('click', function(e) {
e.preventDefault()
setTimeout(function(){
//valor do link
valor = $(this).attr('name');
//requisição ajax
$.ajax({
type: 'POST', //tipo de req.
url: 'cabecalho.php', //arquivo alvo
data: 'valorTeste='+valor, //dados a serem passados.
//pegando a resposta da requisição com a variável 'resposta'
success: function(resposta){
$('body').html(resposta);
}
});
},1);
setTimeout(function(){
$('#conteudo').load($(this).attr('href'));
},1);
});
});