[jQuery] Re: Do tabulations and spaces make a difference?

2008-02-11 Thread Carlos Antonio da Silva
Cristian escreveu: > Thank you Carlos, probably I was very tired last night. I spent 30 > minutes trying to spot the problem. I'll probably never forget to add > a semi colon again. :-) You're welcome.. I'm glad to help... =) --- Carlos Antonio da Silva Sistemas de Informa

[jQuery] Re: Do tabulations and spaces make a difference?

2008-02-10 Thread Cristian
Thank you Carlos, probably I was very tired last night. I spent 30 minutes trying to spot the problem. I'll probably never forget to add a semi colon again. :-) On 10 feb, 08:19, Carlos Antonio da Silva <[EMAIL PROTECTED]> wrote: > $(document).ready(function() { > $("#orde

[jQuery] Re: Do tabulations and spaces make a difference?

2008-02-10 Thread Carlos Antonio da Silva
$(document).ready(function() { $("#orderedlist li:last").hover(function() { $(this).addClass("green"); },function() { $(this).removeClass("green"); }); }): You have a ":" in the last li