Сообщение от Randomizer
|
Как при нажатии на div.push-me добраться до элемента div.select-me ?
|
Как вариант...
<!DOCTYPE html>
<html>
<head>
<title>test</title>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<style type="text/css">
</style>
<script type='text/javascript'>
$(document).ready(function() {
$('.push-me').click(function() {
$(this).parents('.item').find('.select-me').css('border','3px solid #ff0000')
});
});
</script>
</head>
<body>
<div class="item">
<table>
<tbody>
<tr>
<td class="file"><div class="push-me">PUSH ME</div></td>
</tr>
</tbody>
</table>
<div class="select-me">SELECT ME</div>
</div>
</body>
</html>