Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to update the following:

<a data-fb="4dfsdgdsgsdfgsdfgcf08" class="fb-like" href="#">
<span class="like-icon">Likes:</span> 10</a>

I wish to update the value '10' with a result returned from a web service, I have the result stored in a variable called fbNumber. The data-fb attribute is unique so I wish to search for this and update the value.

share|improve this question
If the data-fb value is unique, why not use the id attribute and use getElementById() to reference it? – Jack May 28 '12 at 6:28

2 Answers

up vote 1 down vote accepted

A simple .replace seems to be sufficient here. You can get the current contents using the .html method, and replace any sequence of numbers found within with your new number:

var fbNumber = 23;

$("a[data-fb='4dfsdgdsgsdfgsdfgcf08']").html(function(i,v){
    return v.replace( /([0-9]+)/, fbNumber );
});​​​​​

Fiddle: http://jsfiddle.net/GbqJg/

share|improve this answer
Bah, had something similar with .html but forgot [] brackets, cheers. – Adrian May 28 '12 at 6:38
$("[data-fb='4dfsdgdsgsdfgsdfgcf08']").html("<span class=\"like-icon\">Likes:</span> "+ fbNumber);
share|improve this answer

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.