Skip to content

Instantly share code, notes, and snippets.

@eweise
Created May 30, 2013 06:34
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 eweise/5676054 to your computer and use it in GitHub Desktop.
Save eweise/5676054 to your computer and use it in GitHub Desktop.
Test javascript
function myFunction()
{
var x;
var r=confirm("Press a button!");
if (r==true)
{
x="You pressed OK!";
}
else
{
x="You pressed Cancel!";
}
document.getElementById("demo").innerHTML=x;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment