Skip to main content

Home/ Scripters/ Group items tagged JavaScript

Rss Feed Group items tagged

Jac Londe

Javascript - Afficher du texte - 0 views

  • La méthode write()
  • write("votre texte");
  • On peut aussi écrire une variable, soit la variable resultat, write(resultat);
  • ...4 more annotations...
  • write("Le résultat est " + resultat);
  • write("<B>Le résultat est</B>" + resultat); ou write ("<B>" + "Le résultat est " + "</B>" + resultat)
  • <HTML> <BODY> <H1>Ceci est du Html</H1> <SCRIPT LANGUAGE="Javascript"> <!-- document.write("<H1>Et ceci du Javascript</H1>"); //--> </SCRIPT> </BODY> </HTML>
  • <PRE> <SCRIPT LANGUAGE="Javascript"> <-- document.writeln("Ligne 1"); document.writeln("Ligne 2"); //--> </SCRIPT> </PRE>
Jac Londe

Parsing HTML using Javascript - 0 views

  • Ive written a small js application that gets html content as a string (this only has to work in mozilla)
  • req = new XMLHttpRequest(); req.open('GET', URI, true); req.onreadystatechange = function (aEvt) { if (req.readyState == 4) { if(req.status == 200){ var myTxt = req.responseText;
  • This works fine - myTxt contains the html code as a string. However I want to be able to parse the code using the DOM... Is there a way to create an HTML DOM in Javascript easily?
  • ...1 more annotation...
  • var myTxt = req.responseXML.documentElement; alert(myTxt.getElementsByTagName("XMLElementName")[0].firstChild.data);
Jac Londe

What is the correct way to write HTML using Javascript? - Stack Overflow - 0 views

  • document.write() will only work while the page is being originally parsed and the DOM is being created. Once the browser gets to the closing </body> tag and the DOM is ready, you can't use document.write() anymore.
  • Using innerHTML on a node:
  • var node = document.getElementById('node-id'); node.innerHTML('<p>some dynamic html</p>');
Jac Londe

Write text - How to Create Simple HTML5 Application Output with JavaScript - For Dummies - 1 views

  • <!DOCTYPE html> <html> <head> <title>Outputting Data to HTML</title> <script language="JavaScript"> function WriteText() { document.getElementById("myText").innerHTML = "Clicked!"; } </script> </head> <body> <h1>Creating HTML Element Output</h1> <div><p id="myText">Change Me</p></div> <div><input id="btnClickMe" type="button" value="Click Me" onclick="WriteText()" /> </div> </body> </html>
Jac Londe

keyboard.js html - 1 views

<HTML> <HEAD> <SCRIPT LANGUAGE="JavaScript" SRC="keyboard.js"></SCRIPT> </HEAD> <BODY> <script language="javascript"> document.onkeydown = applyKey; &lt...

started by Jac Londe on 28 Feb 15 no follow-up yet
Jac Londe

jaclonde/pixi.js · GitHub - 0 views

Jac Londe

PxLoader | A Simple JavasScript Preloader - 0 views

  •  
    Pixel pre loader
1 - 20 of 22 Next ›
Showing 20 items per page