Cannot get a inside msg.php
$('#click01').click(function(){
var a = 14;
$.ajax({
url : 'msg.php',
type : 'post',
data : {a:a}
}).done(function() {
window.location='msg.php';
})
});
msg.php
var_dump($_POST['a']); // NULL, but i need `14`
var_dump-NULLis written on display