Found it difficult to frame the question, here's my problem.
alert.html
<div class="alert_text">
<%= link_to "Comment", :action=>:show, :id=>lp.id %>
</div>
when I click on the link it takes me to show page
show.html
table is displayed at beginning of the page after that, below part of code.
<div id="comments">
<%= render :partial=>'comments' %>
</div>
what I need is, when I click on link Comment it must load show page as normal but should direct to comments part of page.
Edit: Just like as it happens in this stackoverflow.com, on top left StackExchange when you click on inbox message.