>
> > onchange="ajax('admin_assign',['org_name'],'shadow_clone');"
>
> Wouldn't the 'shadow_clone' be specified as '#shadow_clone'? (as it is an
> element selected by id)
>No, the third argument of ajax() is just the id of the target element -- the ajax() function itself prepends the "#" to select the specific element. So you cannot just specify any jQuery selector there -- it has to be an element id. Anthony

