Hello World
{"ScriptPreparationCode":null,"TestCases":[{"Name":"Pure JS .innerText","Code":"var el = document.getElementById(\u0022foo\u0022);\r\nel.innerText = \u0022New Hello World\u0022;","IsDeferred":false},{"Name":"Pure JS .innerHTML","Code":"var el = document.getElementById(\u0022foo\u0022);\r\nel.innerHTML = \u0022New Hello World\u0022;","IsDeferred":false},{"Name":"Pure JS .textContent","Code":"var el = document.getElementById(\u0022foo\u0022);\r\nel.textContent = \u0022New Hello World\u0022;","IsDeferred":false},{"Name":"jQuery .text()","Code":"$(\u0022#foo\u0022).text(\u0022New Hello World\u0022);","IsDeferred":false},{"Name":"jQuery .html()","Code":"$(\u0022#foo\u0022).html(\u0022New Hello World\u0022);","IsDeferred":false},{"Name":"jQuery .find().text()","Code":"$(document).find(\u0022#foo\u0022).text(\u0022New Hello World\u0022);","IsDeferred":false},{"Name":"jQuery .find().html()","Code":"$(document).find(\u0022#foo\u0022).html(\u0022New Hello World\u0022);","IsDeferred":false}]}