Displaying 1 result from an estimated 1 matches for "new_show".
Did you mean:
news_show
2009 Mar 30
0
Trying to bind an appended partial that has REST_in_place attached to it with jquery?
In my create.js.erb view I am creating a new model in the view. On
creation I want to have the appended partial in the dom and
selectable
so I can click it''s name and run the plugin REST in place with
Jquery.
#create.js.erb
$("#new_show").before(''<div id="flash_notice"><%= escape_javascript
(flash.delete(:notice)) %></div>'');
$("#shows").append("<%= escape_javascript(render(:partial => @show))
%>").effect("highlight", {}, 3000);
$(".res...