Reputation: 8699
I have the following code in my application.erb.html $alertdiv.text("some message");
but I need to pass in message instead of hard coded message. I need to pass in the notice so I tried doing something like $alertdiv.text(<%= notice %>);
but that didn't work
Upvotes: 0
Views: 165
Reputation: 124419
You still need to wrap the <%= %>
tags in quotation marks:
$alertdiv.text("<%= notice %>");
Upvotes: 1