Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(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);
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment