<script type="text/javascript" src="http://yandex.st/jquery/1.4.4/jquery.min.js"></script>
<div id=a style="border:blue 1px solid;">также с дивом к примеру в нем текст. при нажатии на див текст пропадает</div>
<br/>
<div id=b style="border:red 1px solid;"> а если нажать в другое место то текст возвращается.</div>
<script type="text/javascript">
$("#a,#b").click(function(){
if($(this).attr('id')=='a'){$("#a").hide();
} else $("#a").show();
});
</script>
<script type="text/javascript" src="http://yandex.st/jquery/1.4.4/jquery.min.js"></script>
<div id=a style="border:blue 1px solid;height:23px;">также с дивом к примеру в нем текст. при нажатии на див текст пропадает</div>
<br/>
<div id=b style="border:red 1px solid;height:23px;"> а если нажать в другое место то текст возвращается.</div>
<script type="text/javascript">
$("#a,#b").click(function(){
if($(this).attr('id')=='a'){ $("#a").attr("alt", $("#a").text() ); $("#a").text('')
} else $("#a").text( $("#a").attr("alt") );
});
</script>