Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
var gethtml  = $("#topmenu > li.l89 a").text().split(' ')[1].replaceWith('Any World');

The text is not changing even after using replaceWith as shown above.

share|improve this question
2  
What is not changed? – xdazz Jul 6 '12 at 7:50
Replacewith is a method of a jQuery object, not of the string returned by .text() – Eric Jul 6 '12 at 7:59

1 Answer

up vote 0 down vote accepted

After you call .text() you are no longer working with a jQuery object, but with a plain string. You can do it like this...

var text = $("#topmenu > li.l89 a").text()
  , textParts = text.split(' ');

textParts[1] = "Any world";
console.log('New text', textParts.join(" "));

I wrote the long version for you to see the steps. If you want you can do it on a single line, but it is not very readable anymore.

share|improve this answer
yes but how i can now change $("#topmenu > li.l89 a") first word with textParts[1] ? – Dest Jul 6 '12 at 8:10
something like this should do it $("#topmenu > li.l89 a").text(textParts.join(' ')​);​ – pms1969 Jul 6 '12 at 8:17
thanks i will choose other road like this : >>>>>>>>>> var first = $("#topmenu > li.l89 a").text().split(' ')[1]; var second = $("#topmenu > li.l89 a").text().split(' ')[2]; $("#topmenu > li.l89 a").html("<span style='font-size:10px;' padding->"+first+"</span> "+second); >>>>>> but your post is very good thanks :) – Dest Jul 6 '12 at 8:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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