Something weird about draggable_element_js

Hi,

Because I want to create several draggable elements in a list, I'd like to do the following:

<script type="text/javascript">   <%- elements.each do |element| -%>     <%= draggable_element_js("element_#{element.id}".to_sym, :revert => true) %>   <%- end -%> </script>

However, if you'd try this in your app, you'll see that this won't work, because the quotes around the ID in the generated javascript are converted to the HTML-equivalent (&quot;).

Is this a bug or am I doing something wrong?

Regards, Jaap Haagmans

Sorry, the .to_sym was something I tried, but I of course tried it without the .to_sym first.

The same goes for drop_receiving_element_js, by the way. Can anyone tell me what I'm doing wrong?

Regards, Jaap Haagmans