| javascript Programming Glossary: elem.innerhtmlWhy is the jquery empty function so complicated? http://stackoverflow.com/questions/10305479/why-is-the-jquery-empty-function-so-complicated  string empty function for var i 0 elem elem this i null i  elem.innerHTML  The empty docs Description Remove all child nodes of the set.. 
 Memory leak risk in JavaScript closures http://stackoverflow.com/questions/11186750/memory-leak-risk-in-javascript-closures  4 this.status 200  var data JSON.parse this.responseText elem.innerHTML ' option ' data.theArray.join ' option option ' ' option ' .. 
 Same-origin policy workaround using document.domain in Javascript http://stackoverflow.com/questions/2404947/same-origin-policy-workaround-using-document-domain-in-javascript   else  var data Error loading page req.status  elem.innerHTML data  req.send null script Result hr div id result div body.. 
 Executing <script> elements inserted with .innerHTML http://stackoverflow.com/questions/2592092/executing-script-elements-inserted-with-innerhtml  function evalScript elem data elem.text elem.textContent elem.innerHTML var head document.getElementsByTagName head 0 document.documentElement.. evalScript elem var data elem.text elem.textContent elem.innerHTML  head document.getElementsByTagName head 0  document.documentElement.. 
 Javascript Iterator Class http://stackoverflow.com/questions/2644966/javascript-iterator-class  elem function debug msg var elem createElem '#888' elem.innerHTML msg appendElem elem function error msg var elem createElem '#f88'.. elem function error msg var elem createElem '#f88' elem.innerHTML msg appendElem elem return debug debug error error 'output'.. 
 Can't use “download” as a function name in javascript http://stackoverflow.com/questions/7852237/cant-use-download-as-a-function-name-in-javascript  trying to refer to window.innerHTML but instead executing elem.innerHTML . As said in the comments using window makes for no confusion.. 
 Inserting HTML elements with JavaScript http://stackoverflow.com/questions/814564/inserting-html-elements-with-javascript  syntax elem document.createElement div elem.id 'myID' elem.innerHTML ' my Text ' document.body.insertBefore elem document.body.childNodes.. 
 |