<div id="click">Нажми</div>
<div id="text">Text</div>
body {
width: 1000px;
height: 1000px;
}
#click {
width: 200px;
height: 200px;
}
#text {
width: 200px;
height: 100px;
}
$(document).ready(function() {
$("#click").click(function() {
$("#text").fadeIn();
});
});