| 
		
			Сообщение от Кудаив
			
		
	 | 
	| 
		размещаем на хтмл странице картинку и как сделать чтобы при каждом следущем клике по картинке она смещалась вправо-вверх?
	 | 
	
можно так
<!DOCTYPE html>
<html>
<head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  <title>demo</title>
  <script type='text/javascript' src='http://code.jquery.com/jquery-git.js'></script>
  
  <style>
    img {
		position: absolute;
		left: 0;
		top: 100px;
	}
  </style>
<script>
$(window).load(function(){
	$('img').click(function () {
		$(this).css({left: '+=5', top: '-=5'});
	});
});
</script>
</head>
<body>
  <img src="http://javascript.ru/forum/images/ca_serenity/misc/logo.gif">
</body>
</html>