<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
$(function(){
$('#button').click(function(){
$.ajax({
type: "POST",
url: 'pages/page1.php',
success: function(data) {
$('#result').html(data);
}
});
});
});
</script>
<div id = "button"> Нажми меня </div> // кнопка
<div id = "result"> Результат </div>
$(document).ready(function() {
$('#txta-update').click(function() {
$.ajax({
type: "GET",
url: "<?=$x?>",
success: function(response){
$("#wstxt").val(response);
}
});
});
});