Сообщение от Solonik
|
Может как так можно решить задачу ?
|
Как вариант...
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!--
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
.info {
display: none;
}
</style>
<script type="text/javascript">
$(document).ready(function (){
$('input:radio').click(function (){
$('.info').hide();
$(this).next('.info').show();
});
});
</script>
</head>
<body>
<input type="radio" name="ship" value="item_item" />
<span class="info">Привет</span>
<hr />
<input type="radio" name="ship" value="item_item" />
<span class="info">Пока</span>
</body>
</html>