Re: [XHR] send() argument

On Thu, 22 Feb 2007 20:01:46 +0100, Simon Pieters <zcorpan@gmail.com>  
wrote:

>> A nice feature in Opera's implementation is that you can pass any Node  
>> to send, and Opera sends the serialisation. I think that is very useful  
>> and really wouldn't like it to be made nonconformant by the spec.
>>
>> Example:
>>
>> client.open('POST', 'foo.cgi');
>> client.send( document.getElementById('bar') );
>>
>
> Why can't you use:
>
>     client.open('POST', 'foo.cgi');
>     client.send( document.getElementById('bar').innerHTML );
>
> ...?


The equivalent would be .outerHTML which is somewhat less widely supported  
than .innerHTML (no Gecko support).


-- 
Hallvord R. M. Steen
Core QA JavaScript tester, Opera Software
http://www.opera.com/
Opera - simply the best Internet experience

Received on Friday, 23 February 2007 10:48:37 UTC