scream,
Как-то так:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script type="text/javascript" src="../Scripts/jquery-1.8.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function ()
{
$('#btn').click(function ()
{
$.ajax(
{
url: 'ваш_скрипт.пхп',
success: function (data)
{
if (data == "1")
alert("OK");
else
alert("Not ok");
}
});
});
})
</script>
</head>
<body>
<input type="button" value="click me" id="btn" />
</body>
</html>
Не забудьте исправить url к вашей странице на php, также нужно правильно указать путь к jquery.