I'd suggest using Request.HTML which responses with the DOM, so you can easily
do response.getElement('select'); on it.
On 2010-10-21, at 18:13, FRamonTB wrote:
> I'm using the load method for inserting the content of a select
> element inside a div; like this:
>
> selectajaxDiv.load('url');
>
> it works well, and I can see the "select" element inside my div. After
> that I would add an event to my select, but I cant access to the
> select by any menas (not $('selectId'),$$('select'), nor getFirst,
> etc...).
> Someone knows what I'm doing wrong?
>
> Regards: framontb