I think you meant to do .clone(true) (which is what clones the events
along with the elements).
A couple other points:
This:
$($(this).next()).clone().insertBefore(this).slideDown()
could be:
$(this).next().clone().insertBefore(this).slideDown()
this:
$(this.parentNode).fadeOut('slow',$(this).remove());
should be:
$(this).parent().fadeOut('slow',function(){
$(this).remove();
});
--John
On Sat, Sep 6, 2008 at 5:29 PM, Alex Howell <[EMAIL PROTECTED]> wrote:
>
>
>> I assume you didn't mean to do $('inside') and meant to do $("#inside").
>
> Yes, I did use the right method in my test code (mistake here a legacy
> from mootools habits)
>
>> Could you make a working test case? This has worked for us, in all our
>> tests, so I'm not sure what the exact issue is here.
>
> Yes, sure, it's here:
> http://www.gofish.org.uk/testcase.html
>
> I am using the latest minified jQuery lib (6th Sept)
>
> To get the behaviour, use the "insert column" to produce a new column,
> and then try click on this column's new row button- nothing happens.
> If you use the insert row button on the original column (leftmost) the
> expected behaviour happens.
>
> If there was some kind of fix that would be ace - I've double checked
> my code and can't see anything glaringly obvious. I'm halfway between
> fameworks, but can't justify mosing to jQ just yet...
>
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery Development" 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/jquery-dev?hl=en
-~----------~----~----~----~------~----~------~--~---