Tip: Click lines to highlight, hold ctrl/cmd to multi-select
http://codedumper.com/apeji (1-Aug @ 05:22)
Syntax Highlighted Code
- var newWhim = document.getElementById('menu_whim');
- if(newWhim){
- var c = newWhim.cloneNode(true);
- document.getElementById('blah').appendChild(c);
- }
Plain Code
var newWhim = document.getElementById('menu_whim');
if(newWhim){
var c = newWhim.cloneNode(true);
document.getElementById('blah').appendChild(c);
}