I\'m loading a template profile_messages as part of jQuery UI Tabs with Ajax. However when it loads, profile_messages inherits my site\'s applicati
Do you have a response format of JS defined in your controller? It shouldn't render the layout if it renders a JS response properly. Do your logs show "responding with JS format"?
respond_to do |format|
format.js
end
As mrbrdo mentioned, you can also do render :layout => false but it shouldn't be necessary if the JS response is being run properly.