Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I m using Rails 3.2.1. how to use link_to with remote=>true

My Method in Controller

def clickme
    @clk = "you click me"
    respond_to do |format|
        format.js { render :layout=>false }
    end
  end

My View
In my new.html.erb file

<%= link_to "click here", {:action=>"clickme"}, {:remote => true, :id=>"clk"} %>

<div id="allclick">
    <%= render :partial => 'goclick'  %>
</div>  


_goclick.html.erb

<%= @clk %>


clickme.js.erb

$("allclick").update("<%= escape_javascript(render(:partial => "goclick")) %>");

On my web-page everything is fine when I click on click here link nothing change. But when I check Firebug console it shows me:

$("allclick").update("you click me");

In My application.js

//= require jquery
//= require jquery_ujs

Help Me :(

share|improve this question
1  
I suggest you work on your accept rate by accepting correct answers. (on this particular question and your previous questions if you have obtained a correct answer). These posts should be helpful meta.stackoverflow.com/questions/5234/… , meta.stackoverflow.com/questions/16721/… – prasvin Feb 29 '12 at 10:16

2 Answers

up vote 4 down vote accepted

try using html instead of update:

$("#allclick").html("<%= escape_javascript(render(:partial => "goclick")) %>");
share|improve this answer
thx a lot :) it works – manish nautiyal Feb 29 '12 at 9:41
@manishnautiyal so accep the answer please. – Miguel Ping Mar 8 '12 at 14:37

Use $("#allclick") not $("allclick"), you missed the "#" ;)

share|improve this answer
I used it. but still no output :( – manish nautiyal Feb 29 '12 at 9:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.