This is my code so far:
$("h1.intro:contains('|')").each(function() {
$(this).html($(this).html().replace('|','</span><br /><span>'))
});
This works just once, but it has to work for all of those "|"...
any ideas?
|
This is my code so far:
This works just once, but it has to work for all of those "|"... any ideas? |
|||||
|
|
Add
More Info:
|
||||
|
If you are using jQuery 1.4, you can do this more nicely using the
This means you don't have to create a second jQuery instance and should perform better. |
||||
|
Hi add a modifier to your regex by adding the "/g" after "|"
|
|||
|