Assuming we have a comment textarea where the user can enter this code:
[quote="comment-1"]
How can I replace that code before the form submits with the actual html content from <div id="comment-1"> ?
|
Assuming we have a comment textarea where the user can enter this code:
How can I replace that code before the form submits with the actual html content from |
|||
|
|
|
You could try something like this:
It should match agains any numbered quote in the format you gave. |
|||
|
|
|
You can use regular expressions:
|
|||
|
|
|
If I understand you correctly, you wish to replace something like '[quote="comment-1"]' with ''. In JavaScript:
In jQuery:
Hope this helps! |
|||
|
|