Skip to content

Instantly share code, notes, and snippets.

@arjan0307
Created March 15, 2012 14:59
Show Gist options
  • Save arjan0307/2044648 to your computer and use it in GitHub Desktop.
Save arjan0307/2044648 to your computer and use it in GitHub Desktop.
<% if @post.errors.any? %>
var errors = '';
<% @comment.errors.full_messages.each do |error| %>
errors.append("<%= escape_javascript( error ) %>\n");
<% end %>
alert(errors);
<% else %>
$('#posts').prepend('<%=j render 'chapters/posts/post', {:post => @post} %>')
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment