What is .src in the JavaScript code below?
function jsDropDown(imgid,folder,newimg) {
document.getElementById(imgid).src="http://www.cookwithbetty.com/" + folder + "/" + newimg + ".gif";
}
It's the src DOM property of the <img> element that it's dealing with.