How do I replace any string in jquery let's say I have a string "-9o0-9909" and I want to replace it with another string.
|
|
You could use the following to replace the first occurrence of a word within the body of the page:
If you wanted to replace all occurrences of a word, you need to use regex and declare it global
If you wanted a one liner:
You are basically taking all of the HTML within the See a demo here - look at the HTML top left to see the original text, the jQuery below, and the output to the bottom right. |
|||||
|
|
|||||||
|
The code below will do that.
Jokes aside, replacing text nodes is not trivial with JavaScript. I've written a post about this: Replacing text with JavaScript. |
||||
|
|
for variable:
|
|||
|
|