Здравствуйте.
Код должен обновить переменную на странице без ее перезагрузки.
Куда добавить эту переменную? subtotal
<button type="button" id="button" class="btn btn-primary" >Кнопка</button>
$("#button").click(function(){ // click function fired
var subtotal = $("#subtotal").val()
var dataString = 'subtotal=' + subtotal;
$.ajax({ // ajax post
type: "POST",
url: "index.php", // post data to this URL
data: dataString,
cache: false,
success: function(html){ // this is where you can set a success callback
$("#subtotal").val("You're new value");
}
});
return false; // this tells the page not to refresh
)};