Hi all,
I’m using a set of radio buttons, which when selected will transfer the
control to a javascript function. But the issue is that the javascript
function isn’t triggered. Is there any error in my code?
Given below is the code.
<% @types.each do |type|%> #@types was declared in the controller
<%= type.name %><input type=“radio” name= “type”
value= <%type.id>onclick= “myfunc();”>
<% end %>
The above code is in a partial and the javascript function is in an
rhtml page.
My javascript function
<%= javascript_include_tag “prototype” %>
<%= javascript_include_tag “defaults” %>
I have no clue on why this is happening and I believe someone can help
me.
Thanks
Chris