So far I only know how to write code for AFTER the html has loaded. How do I use a function like this:
function makeBranches(){
document.write("<center>")
var bq = 10;
for (var run = 0;run<bq;run++){
for (var length=0;length<=run;length++)
document.write("<font color=green><b>^</b></font>");
document.write("<br>");
}
document.write("</center>");
}
inside of $(document).ready, without it overwriting the html?
document.write. Useappendorhtmlandtextfunctions in jQuery instead.