EE - 29078392
by ChrisStanyon
HTML
<div class="clicker">Reply</div>
<div style="display:none;">Response to this comment is shown only here!</div>
<div class="clicker">Reply</div>
<div style="display:none;">Response to this comment is shown only here!</div>
<div class="clicker">Reply</div>
<div style="display:none;">Response to this comment is shown only here!</div>
JavaScript
$(document).ready(function() {
$('.clicker').click(function() {
$(this).next('div').show();
});
});