So, if I have HTML like this:
<div id='div'>
<a>Link</a>
<span>text</span>
</div>
How can I use JavaScript to add an HTML element where that blank line is?
|
So, if I have HTML like this:
How can I use JavaScript to add an HTML element where that blank line is? |
||||
|
|
|
As you didn't mention any use of javascript libraries (like jquery, dojo), here's something Pure javascript.
or
Happy Coding. |
|||||||||||||
|
|
If you want to use something like jQuery you can do something like this:
|
|||
|
|
|
jQuery has a nice, built in function for this: after(), at http://api.jquery.com/after/ In your case, you will probably want a selector like this:
The code examples from the link given above also show how to load jQuery if that is new to you. |
|||
|
|
|
Assuming that you are only adding one element:
|
|||
|
|
|
Instead of dealing with the
And then insert your new element directly after that element:
This will allow you to always guarantee your new element follows the link. |
|||
|
|