form_remote_tag is not rendering the new partial at the place where old partial was rendered.Instead it is rendered in a complete new page [http://localhost:3000/to_dos/todays_todo]. Not able to figure out where I am going wrong. Kindly Help.
<% form_remote_tag(:update => "daily_to_do_div",:url => { :action => :todays_todo}) do%>
<%= text_field_tag :datepicker_value, nil %>
<%= submit_tag "Add item with Ajax" %>
<% end %>
<div id="daily_to_do_div">
<%= render :partial=>'daily_to_do', :locals => {:to_dos => @to_dos}%>
</div>
corresponding controller code is as follows
def todays_todo
# date = Date.today
@to_dos = ToDo.find_all_by_to_do_date(params[:datepicker_value].to_date)
render :partial=>'daily_to_do', :locals => {:to_dos => @to_dos}
end