Exactamente que quieres hacer con el tema de los botones?
Aca te dejo un ejemplo:
http://cesarv.com/ajax/ pues si te sirve.
Los cosigo:
index.html
Código HTML:
Ver original <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script> $(function(){
$(".button").click(function(){
$('#resultado').html("Cargando...");
var valor=$(this).attr("rel");
$.ajax({
url: 'ajax.php',
data: 'boton='+valor,
type: 'POST',
success: function(data){
$('#resultado').html(data);
}
});
});
});
<a href="#" rel="1" class="button">BOTON 1
</a><br /> <a href="#" rel="2" class="button">BOTON 2
</a><br /> <a href="#" rel="3" class="button">BOTON 3
</a><br />
<div id="resultado">ACA IMPRIMO
</div>
ajax.php
Código PHP:
Ver original<?
$boton=$_POST["boton"];
echo "boton = $boton";
?>