Skip to content

Instantly share code, notes, and snippets.

@aboudard
Created May 22, 2013 21:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aboudard/5631051 to your computer and use it in GitHub Desktop.
Save aboudard/5631051 to your computer and use it in GitHub Desktop.
Untitled
p { color: red; }
<!-- content to be placed inside <body>…</body> -->
<p id="toto">Hello World</p>
// alert('Hello world!');
function modifieTexte(e){
e.target.innerHTML = "Bye Bye";
}
var myp = document.getElementById("toto");
myp.addEventListener("click", modifieTexte, false);
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"html"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment