Every line of 'javascript set div text' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
100 function setText (text) { 101 document.getElementById('data').innerHTML = text; 102 }
18 function setText(id, str) { 19 var el = document.getElementById(id); 20 if (typeof el.innerText === 'string') { 21 el.innerText = str; 22 } else { 23 el.textContent = str; 24 } 25 }
12 function setText(id, value) { 13 text[id] = value; 14 }
37 function selectText(containerid) { 38 if (document.selection) { 39 var range = document.body.createTextRange(); 40 range.moveToElementText(document.getElementById(containerid)); 41 range.select(); 42 } else if (window.getSelection) { 43 var range = document.createRange(); 44 range.selectNode(document.getElementById(containerid)); 45 window.getSelection().addRange(range); 46 } 47 }
614 static textClicked (e, div) { 615 var b = div.owner; // b is a BlockArg 616 activeFocus = b; 617 var pt = b.getScreenPt(); 618 var sc = ScratchJr.getActiveScript(); 619 div = sc.parentNode; 620 var w = div.offsetWidth; 621 var h = div.offsetHeight; 622 var dx = ((pt.x + 480 * scaleMultiplier) > w) ? (w - 486 * scaleMultiplier) : pt.x - 6 * scaleMultiplier; 623 var ti = document.forms.editable.field; 624 ti.style.textAlign = 'center'; 625 document.forms.editable.style.left = dx + 'px'; 626 var top = pt.y + 55 * scaleMultiplier; 627 document.forms.editable.style.top = top + 'px'; 628 if (isAndroid) { 629 AndroidInterface.scratchjr_setsoftkeyboardscrolllocation( 630 top * window.devicePixelRatio, (top + h) * window.devicePixelRatio 631 ); 632 } 633 document.forms.editable.className = 'textform on'; 634 ti.value = b.argValue; 635 if (isAndroid) { 636 AndroidInterface.scratchjr_forceShowKeyboard(); 637 } 638 ti.focus(); 639 }
5 function showDiv(id) 6 { 7 document.getElementById(id).style.visibility = 'visible'; 8 }
129 function showdiv(){ 130 $("#emailDiv").show(); 131 $("#sendingDiv").hide(); 132 }
74 function divOnclickHandler(elem){ 75 if (elem === document.getElementById('theDIV')) 76 window.top.eCounters["div onclick"] += 1; 77 }
9 function setText(text) { 10 if( $('h3').text() != text ) { 11 $('h3').text( text ); 12 }; 13 };
133 function showDiv(id) { 134 jQuery('#' + id).show(); 135 }