You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<divclass="box"><divclass="d1" id = "con_father"><h2id = "con">Default content</h2></div></div>
JS code
$(function(){$("#con").dblclick(function(){varfatherElement=document.getElementById("con_father");varh1Element=document.getElementById("con");varinputElement=document.createElement("input");inputElement.value=h1Element.innerHTML;fatherElement.replaceChild(inputElement,h1Element);inputElement.className="d1";//Keep the style unchanged after the replacementinputElement.focus();//The input frame automatically gets the focus after the replacementinputElement.onblur=function(){h1Element.innerHTML=inputElement.value;fatherElement.replaceChild(h1Element,inputElement);}});})