Dimanchik87,
кликаем по первому диву исчезает второй
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>jQuery</title>
<script src="http://code.jquery.com/jquery-1.9.1.js">
</script>
<script>
$(function ()
{
$("#one").data("id", "#two");
function name(event){
var id = $(this).data("id");
if(id) $(id).css("opacity",0)
}
$("div").click(name)
});
</script>
<style type="text/css">
div{
height: 100px;
width: 100px;
background-color: #FF8C00;
}
</style>
</head>
<body>
<div id="one">one</div>
<div id="two">two</div>
</body>
</html>