I'm trying to add this code to my page:
<li><a href="#" target="_blank" id="twitter"><i class="fa fa-twitter fa-2x"></i></a></li>
Here is the full list:
<ul class="social" id="social">
<li><a href="#" target="_blank" id="facebook"><i class="fa fa-facebook fa-2x"></i></a></li>
<li><a href="#" target="_blank" id="pinterest"><i class="fa fa-pinterest fa-2x"></i></a></li>
<li><a href="#" target="_blank" id="instagram"><i class="fa fa-instagram fa-2x"></i></a></li>
</ul>
And here is the script I wrote:
//Add Twitter
var newLi = document.createElement('li');
var newA = document.createElement('a');
var newI = document.createElement('i');
newA.setAttribute('id', 'twitter');
newA.setAttribute('target', '_blank');
newI.setAttribute('class', 'fa');
newI.setAttribute('class', 'fa-twitter');
newI.setAttribute('class', 'fa-2x');
newLi.appendChild(newA);
newA.appendChild(newI);
var position = document.getElementById('social');
position.appendChild(newLi);
You forgot to set the href value for your anchor and there's no content within the actual link so nothing shows.
http://jsfiddle.net/d9vj2xwt/
You also should try using element.classList.add() to add the classes, so you're not overwriting