var fDesc=new Array(); fDesc[0] = "JSFiddle is a browser extension that allows you to view your fiddles with their revisions and create fiddles directly from the extension. By simply clicking the jsFiddle icon you can view a list of your 100 latest fiddles with their latest revision and description, from there you can just select the one you want and begin editing."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }