<p>Lorem Ipsum <a href="#">Link</a> <div ... </div> </p>
I want to put a span around 'Lorem Ipsum' without using jQuery, so the result looks like:
<p><span>Lorem Ipsum </span><a href="#">Link</a> <div ... </div> </p>
Any ideas? Thanks
I want to put a span around 'Lorem Ipsum' without using jQuery, so the result looks like:
Any ideas? Thanks |
||||
|
|
|
First, you need some way of accessing the paragraph. You might want to give it an
Then, you can use
To make it more reliable, you might want to call Oook, So you want to replace a part of a text node with an element. Here's how I'd do it:
Working with nodes at the low level is a bit of a nasty situation to be in; especially without any abstraction to help you out. I've tried to retain a sense of normality by creating a DOM node out of an HTML string produced from the replaced "Lorem Ipsum" phrase. Purists probably don't like this solution, but I find it perfectly suitable. EDIT: Now using a document fragment! Thanks Crescent Fresh! |
|||||||||||||
|
|
Combine these 2 tutorials: PPK on JavaScript: The DOM - Part 3 Basically you need to access the node value, remove it, and create a new child element who's node value is the value of the parent item's node, then append that element (span in this case) to the parent (paragraph in this case) |
|||
|
|
|
How about using a regular expression in javascript and replacing "Lorem Ipsum" with "<span>Lorem Ipsum</span>" (just remember that you will have to get the "innerHTML" of the element and then replace the whole lot again which may be a bit slow) |
|||||||
|
|
UPDATE:
The method below will search through the subtree headed by (OK, so it took more than a few minor tweaks. :P)
|
|||||||
|