vote up 0 vote down star

i am using mootools

i have div in body with like this

      <div class="total-title">12</div>

total-title i am using for reference.

my mootools code is

      $('total-title').set('text', 'text goes here');

i want to change text of above div.

this is not working...?

Thanks

flag

70% accept rate
Why is this tagged with "jquery" if it's a mootools question? – Pointy Oct 14 at 16:09

2 Answers

vote up 0 vote down check

You have given your div a class, no an ID, so the following:

$$('.total-title').set('text', 'text goes here');
link|flag
Thank you vary much, i am new to mootools that's why .... – air Oct 14 at 16:15
Its a little different from jQuery. The $() function only supports finding elements by ID. You have to use the $$() function to find elements by CSS selectors. Once you get that through your brain, mootools is great to use. – jrista Oct 14 at 18:12
vote up 0 vote down

I suspect that for a element you want to set the "html" property, not the "text" property.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.