Mario -
${...} doesn't, currently, exist in jQuery. Did you find an example
somewhere that showed it as working? (It needs to be fixed.)
--John
On 5/9/07, Mario Moura <[EMAIL PROTECTED]> wrote:
Hi Folks
I am trying $("img").attr("title", "${this.src}");
So :
$("img").attr("title",
"${$($('#myid/.markup02/div/.field-item').siblings().get(1)).text()}");
If I insert my function
$($('#myid/.markup02/div/.field-item').siblings().get(1)).text()
in firebug console I receive "my target text"
but when I try insert into $("img").attr("title", "${...} I receive full
expression "$($('#myid...text()"
What is missing?
Mario