Just a quicky… Using the guide from here, I’ve managed to use the ‘net connection of my Nexus One with my Eee PC running Ubuntu Netbook Remix. Speed tests… Nexus One using Wi-Fi and home cable: Nexus One using 3G in the Telford & Wrekin region:
Archive for March, 2010
writeAttribute() example
March 17th, 2010
No Comments
The documentation on http://prototypejs.org/api/element/writeAttribute is a wee bit scarce. So here’s a quick one on usage. To add an attribute: $(‘foo’).writeAttribute(‘title’, ‘bar’); To remove an attribute: $(‘foo’).writeAttribute(‘title’, null); To enable all disabled form elements (in a form with the id ‘container’): $(‘container’).select(‘[disabled="disabled"]‘).each(function(e) { $(e).writeAttribute(‘disabled’, null); });

