Team:Cornell/javascripts/mycodraw

From 2013.igem.org

(Difference between revisions)
(Created page with "function mycoDraw(canvas) { var img = canvas.children[0]; alert(img.src); }")
Line 1: Line 1:
 +
function mycoDraw(canvas)
function mycoDraw(canvas)
{
{
 +
alert("I am the alert box!");
var img = canvas.children[0];
var img = canvas.children[0];
alert(img.src);
alert(img.src);
}
}

Revision as of 17:27, 16 June 2013

function mycoDraw(canvas) { alert("I am the alert box!"); var img = canvas.children[0]; alert(img.src); }