Tip: Click lines to highlight, hold ctrl/cmd to multi-select

http://codedumper.com/apeji (1-Aug @ 05:22)

Syntax Highlighted Code

  1. var newWhim = document.getElementById('menu_whim');
  2.  
  3. if(newWhim){
  4.  
  5.     var c = newWhim.cloneNode(true);
  6.     document.getElementById('blah').appendChild(c);
  7.  
  8.  
  9. }

Plain Code

var newWhim = document.getElementById('menu_whim');

if(newWhim){

    var c = newWhim.cloneNode(true);
    document.getElementById('blah').appendChild(c);


}

Permalink: http://codedumper.com/apeji