以下のコードは、私の実装での ajax 呼び出しの応答です。
/* response of ajax call */
<script> var count = 6; </script>
<div> some code goes here</div>
jqueryのajaxレスポンスから上記のカウント値を取得する方法
$.ajax({
url: url,
type: "GET",
dataType: "text",
timeout: 20000,
success: function(response){ },
error: function(){/* error code goes here*/}
});