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.

How to change # tag + Character to link using javascript

This is going #right on the way

with

This is going <a href="http://twitter.com/#!/search/right">right</a> on the way

even this is also acceptable

This is going <a href="http://twitter.com/#!/search/right">#right</a> on the way

The page lots's of # (hash) tag in different classes and id's

share|improve this question
If you can do it server-side, please do. (i.e. w/ PHP) – Kelly Sep 27 '11 at 20:12
@kelly is there any way to do this with javascript..!! – Basic Bridge Sep 27 '11 at 20:12
This Q is actually a duplicate of stackoverflow.com/questions/7275650/… – Kelly Sep 27 '11 at 20:14

2 Answers

up vote 2 down vote accepted
var string = "This is going #right on the way";
string.replace(/#(\S*)/g,'<a href="http://twitter.com/#!/search/$1">$1</a>')

Demo: http://jsfiddle.net/dKm82/

share|improve this answer
I removed my comment after seeing your demo..!! at first i got confused sorry for that..!! – Basic Bridge Sep 27 '11 at 20:20
@Basic Bridge got it, no problem – amosrivera Sep 27 '11 at 20:23
here is one little problem it multiply text 2 times.. see this demo jsfiddle.net/dKm82/1 – Basic Bridge Sep 27 '11 at 20:33
the problem has to do with the jquery logic, if you want to modify the text of several paragraphs you have to loop over them, see jsfiddle.net/dKm82/2 – amosrivera Sep 27 '11 at 20:37
1  
@BasicBridge you have a point there, there was a little detail, note that i added "g" to the regular expression, this tells it to repalce multiple times see: jsfiddle.net/dKm82/4 – amosrivera Sep 27 '11 at 20:47
show 2 more comments

here is my suggestion

(function(){

$.fn.hashlink = function(){
  this.text(this.text().replace(\#(w+)\),"<a href='twitter.com/#!/search/$1'>$1</a>")
  text = \#w+\g.
}    

})
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.