>I've recently discovered livequery plugin, but I can't make it work. I
>explain:
>
>I have the next code:
>
>$(document).ready(function (){
>
>     alert ("executing jquery");
>
>     $("[EMAIL PROTECTED]").livequery(function(){
>               alert("hey, one div wanna be rounded!");
>               ${this}.rounded();
>       });
>
>});
>
>
>...and it doesn't work. Neither the first alert nor the second one is
>invoked.  But if I drop the line:
>
>${this}.rounded();

That's because you don't have parenthesis around (this)--you have curly
brackets {this}.

-Dan

Reply via email to