[jQuery] Re: i don´t know how add css to my html wit h jquery.

2009-01-11 Thread Mauricio (Maujor) Samy Silva
The css() jQuery method has two sintaxes. For one css declaration use: $('#contenido').css('float', 'left'); For multiple css declarations use: $('#contenido').css ({ float: 'left', width: '480px', min-height: '250px', ..., backgroundColor: '#fff' }); See:

[jQuery] Re: i don´t know how add css to my html wit h jquery.

2009-01-11 Thread Kean
Do not use jQuery 1.2.5, use 1.2.6 instead. On Jan 11, 2:19 pm, Mauricio \(Maujor\) Samy Silva css.mau...@gmail.com wrote: The css() jQuery method has two sintaxes. For one css declaration use: $('#contenido').css('float', 'left'); For multiple css declarations use: $('#contenido').css ({

[jQuery] Re: i don´t know how add css to my html wit h jquery.

2009-01-11 Thread goosfancito
Thank´s Mauricio but... i like that are declaration stay in other file, not in file (for example) index.html... how i do? On 11 ene, 19:52, Kean shenan...@gmail.com wrote: Do not use jQuery 1.2.5, use 1.2.6 instead. On Jan 11, 2:19 pm, Mauricio \(Maujor\) Samy Silva css.mau...@gmail.com

[jQuery] Re: i don´t know how add css to my html wit h jquery.

2009-01-11 Thread Ricardo Tomasi
An external CSS file has nothing to do with any script, just use a link inside head: link href=estilos.css rel=stylesheet / On Jan 11, 8:59 pm, goosfancito goosfanc...@gmail.com wrote: Thank´s Mauricio but... i like that are declaration stay in other file, not in file (for example)