index.php
$(document).ready(function(){
ScreenWidth = screen.width;
$("#test").click(function(event){
$.ajax({
url: 'script.php',
data : 'postVar="ScreenWidth"',
type : "POST",
success: function (data) {
alert (data);
},
error: function(){
alert ("No PHP script: ");
}
});
return false;
});
});
script.php
<?php
echo $_POST['postVar'];
все равно в script.php ничего не передает