<%= job.id %> ---------- Forwarded message ---------- From: tom <tomabroad-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> Date: Tue, Mar 30, 2010 at 2:21 PM Subject: simpe help needed To: rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org <p> <%= job.title %> <%= job.id %> <%= job.created_at %> </p> <div id="inner_content_ibox_#{job.id}" style="display:none;" >s <div style="background:#000000;color:#ffffff;border:1px dashed #FFFFFF;padding:15px;margin:15px;"> </div> </div> gives me: <p> test123 7123 2010-02-23 17:53:49 UTC </p> <div id="inner_content_ibox_#{job.id}" style="display:none;" >s <div style="background:#000000;color:#ffffff;border:1px dashed #FFFFFF;padding:15px;margin:15px;"> </div> </div> what is wrong with the ID of the DIV? thx -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On 30 March 2010 19:23, tom <tomabroad-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> <%= job.id %> > > > ---------- Forwarded message ---------- > From: tom <tomabroad-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > Date: Tue, Mar 30, 2010 at 2:21 PM > Subject: simpe help needed > To: rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > <p> > <%= job.title %> > <%= job.id %> > > <%= job.created_at %> > </p> > > > > <div id="inner_content_ibox_#{job.id}" style="display:none;" >s > > <div style="background:#000000;color:#ffffff;border:1px dashed > #FFFFFF;padding:15px;margin:15px;"> > </div> > </div> > > gives me: > > > > <p> > > test123 > 7123 > 2010-02-23 17:53:49 UTC > </p> > > > <div id="inner_content_ibox_#{job.id}" style="display:none;" >sPossibly something more like <div id="inner_content_ibox_<%= job.id %>" style="display:none;" >s would be better, or possibly <%= "div id=\"inner_content_ibox_#{job.id}\" style=\"display:none;\"" >s Colin> > > <div style="background:#000000;color:#ffffff;border:1px dashed > #FFFFFF;padding:15px;margin:15px;"> > > </div> > </div> > > > what is wrong with the ID of the DIV?-- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
perfect - thx On Tue, Mar 30, 2010 at 4:25 PM, Colin Law <clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> On 30 March 2010 19:23, tom <tomabroad-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > <%= job.id %> > > > > > > ---------- Forwarded message ---------- > > From: tom <tomabroad-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > > Date: Tue, Mar 30, 2010 at 2:21 PM > > Subject: simpe help needed > > To: rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > > > > <p> > > <%= job.title %> > > <%= job.id %> > > > > <%= job.created_at %> > > </p> > > > > > > > > <div id="inner_content_ibox_#{job.id}" style="display:none;" >s > > > > <div style="background:#000000;color:#ffffff;border:1px dashed > > #FFFFFF;padding:15px;margin:15px;"> > > </div> > > </div> > > > > gives me: > > > > > > > > <p> > > > > test123 > > 7123 > > 2010-02-23 17:53:49 UTC > > </p> > > > > > > <div id="inner_content_ibox_#{job.id}" style="display:none;" >s > > Possibly something more like > <div id="inner_content_ibox_<%= job.id %>" style="display:none;" >s > would be better, or possibly > <%= "div id=\"inner_content_ibox_#{job.id}\" style=\"display:none;\"" >s > > Colin > > > > > > > <div style="background:#000000;color:#ffffff;border:1px dashed > > #FFFFFF;padding:15px;margin:15px;"> > > > > </div> > > </div> > > > > > > what is wrong with the ID of the DIV? > > -- > 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org<rubyonrails-talk%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org> > . > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. > >-- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.