ну примерно вот так
var whoBetTO = setInterval(function() {
$.ajax({
url : 'pokerUserHandler/whobet.php',
type: 'POST',
data: {idGame : idGame},
success: function (res) {
if (res != 1) {
$('.whoBetTI').html(res);
clearInterval(whoBetTO);
}
}
});
}, 1000);
а в div я гружу
print('
<script type="text/javascript">
$(function () {
$("#range_4").ionRangeSlider({
type: "single",
step: 1,
postfix: " Кол-во",
from: '.$needReiz.',
hideMinMax: true,
hideFromTo: false
});
});
</script>
<div style="width: 70%; margin: auto; padding-top: 10px;">
<input id="range_4" type="text" name="range_4" value="'.$needReiz.';'.$myFish.'" />
</div>
');