Сообщение от yintar
|
не меняется фон
|
меняется -- даже при вашей нестандартной установке скрипта вне html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ru" xml:lang="ru">
<head>
<title>OS2</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="global.css"/>
</head>
<body style="height: 2300px; background-color:#FFD700">
<div id="a" style="height: 300px; background-color:#0077b3">
</div>
</body>
</html>
<script type="text/javascript">
$(function() {
$(window).scroll(function() {
alert('yes');
$('#a').css('background-color','red');
});
});
</script>