<input type="checkbox" class="checkbox" id="check_auto_dev_1" onclick="auto_refresh_dev('кухня','1');"><label for="check_auto_dev_1"><b>Авто обновление</b></label>
<input type="checkbox" class="checkbox" id="check_auto_dev_2" onclick="auto_refresh_dev('спальня','2');"><label for="check_auto_dev_2"><b>Авто обновление</b></label>
<input type="checkbox" class="checkbox" id="check_auto_dev_3" onclick="auto_refresh_dev('гостиная','3');"><label for="check_auto_dev_3"><b>Авто обновление</b></label>
function auto_refresh_dev(location_name,namber)
{
if ($("#check_auto_dev_"+namber).prop("checked"))
{
refresh_light = setInterval(function ()
{
$.ajax( { type: "GET", url: "php/check_dev.php", data:{'location':location_name} , success: function(msg)
{
$("#check_dev_"+namber).html(msg);
//console.log(location_name);
// scroll
$('.scroll-pane-'+namber).jScrollPane({
showArrows: false,
verticalGutter: 10,
verticalDragMinHeight: 121,
verticalDragMaxHeight: 121
});
} });
}, 1000);
}
else
{
clearInterval(refresh_light);
}
}
_____________
Мой первый сайтик
Посмотри на свой XBMC под другим углом