I am trying to do an alert showing the value of a div in an RJS: page.alert("$(''slot3'').value") It gives me an alert but just shows me what is inside the brackets. $(''slot3'').value. Any ideas? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Chris Habgood wrote:> I am trying to do an alert showing the value of a div in an RJS: > page.alert("$(''slot3'').value") > > It gives me an alert but just shows me what is inside the brackets. > $(''slot3'').value. > > Any ideas?How about page.alert(page[''slot3''].value) ? -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Nope not working. Showing <i>buildshelf/remove_card.js.rjs</i> where line <b>#6</b> raised: <pre><code>ActionView::Helpers::JavaScriptElementProxy#to_str should return String</code></pre> On Tue, Feb 10, 2009 at 7:01 PM, André l. Leal < rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> > Chris Habgood wrote: > > I am trying to do an alert showing the value of a div in an RJS: > > page.alert("$(''slot3'').value") > > > > It gives me an alert but just shows me what is inside the brackets. > > $(''slot3'').value. > > > > Any ideas? > > How about > page.alert(page[''slot3''].value) ? > -- > Posted via http://www.ruby-forum.com/. > > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Guess you are right... I thought that it might work... anyway.. you could just stay with raw javascript: page << "alert($(''test_alert'').value);" But I''ll try to find a better solution... -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Ok, thanks. What I am really trying to do is this which I have been banging my head against: How do I get the dom id to come in? The 2nd line prints properly in firebug and shows the value but the first line just has "#{@next" in it not the value. Same idea as the alert but an IF condition I think. page << ''if ($("#{@next}").value == "APS") {'' page[:"#{@next}"].replace_html ''moo'' page << ''}'' On Tue, Feb 10, 2009 at 7:23 PM, André l. Leal < rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> > Guess you are right... I thought that it might work... > > anyway.. you could just stay with raw javascript: > > page << "alert($(''test_alert'').value);" > > But I''ll try to find a better solution... > > > -- > Posted via http://www.ruby-forum.com/. > > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---