Доброго!
Задача такая, я раз в 2 секунды запрашиваю состояние пинов на плате, и в зависимости от этого ставлю чекбокс, я точно знаю, что данные приходят и корректно, но не могу понять почему чекбокс не ставится.
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.1/jquery.mobile-1.2.1.min.css" />
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.1/jquery.mobile-1.2.1.min.js"></script>
</head>
<body>
<form>
<label for="flip-checkbox-2">Flip toggle switch checkbox:</label>
<input type="checkbox" data-role="flipswitch" name="flip-checkbox-2" id="flip-checkbox-2" data-on-text="Light" data-off-text="Dark" data-wrapper-class="custom-label-flipswitch">
</form>
<script>
window.setInterval("jQuery.get('serial.php', {'action': 'x'}, ProcessResult)",2000);
function ProcessResult(data)
{
if(data=="1")
$("input[name=flip-checkbox-2]").attr("checked","checked");
}
</script>
</body>
</html>