Answers for "javascript adjacent element"

0

javascript add adjacent html

ul = document.querySelector('ul');

ul.insertAdjacentHTML('afterbegin','<li>Hello</li>'); 

// 	 <ul>
//		<li>Hello</li>
//    </ul>
Posted by: Guest on November-05-2020
2

htmladjacent

// <div id="one">one</div>
var d1 = document.getElementById('one');
d1.insertAdjacentHTML('afterend', '<div id="two">two</div>');

// At this point, the new structure is:
// <div id="one">one</div><div id="two">two</div>
Posted by: Guest on February-28-2020

Code answers related to "javascript adjacent element"

Browse Popular Code Answers by Language