Then, it might be a bug, and your report might be valuable to us.
I don't see any mis-use in your code. You should create a minimal document
where this fails and create a ticket on Trac.
http://prototypejs.org/contribute
Thanks
On Nov 26, 2007 9:49 PM, symfony <[EMAIL PROTECTED]> wrote:
>
> Sorry, for posting in this group, i didn't thought of 'ror_spinoffs'.
> The code above, was actually wrong. I tried something like this:
> var resizer = $(element).insert({top: '<div id="'+this.panel_id
> +'_resizer_h" class="resizer_v"></div>'});
> But the error is the same..
> kind regards
>
> Mislav Marohnić schrieb:
> > On Nov 26, 2007 9:22 PM, symfony <[EMAIL PROTECTED]> wrote:
> >
> > >
> > > Hello,
> > > I've got a problem using Element.insert('<div id="test"
> > > class="testclass">testdiv</div>');
> >
> >
> > Hi,
> >
> > The first argument to Element.insert should be the element that is the
> > reference of insertion. Try doing this:
> >
> > Element.insert(document.body, '<div id="test"
> > class="testclass">testdiv</div>');
> >
> > An alternative format we prefer is calling the method directly on
> element
> > objects. That way you don't have to specify the target as first
> argument:
> >
> > $(document.body).insert("...")
> >
> >
> > Mind that this is a group for developers discussing core features of the
> > framework. For questions like yours, post to rubyonrails-spinoffs.
> Thanks,
> >
> > - M
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Prototype: Core" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/prototype-core?hl=en
-~----------~----~----~----~------~----~------~--~---