Return to Snippet

Revision: 501
at July 17, 2006 03:55 by perelin


Initial Code
function changeInnerHtml()
{
	var args=changeInnerHtml.arguments;
	if ((obj=MM_findObj(args[0])) != null)
	{
		obj.innerHTML = args[1];
	}
}

Initial URL


Initial Description
// Changes the innerHTML of the first arg (object ID) into the secong arg (string)

Initial Title
changeInnerHtml

Initial Tags


Initial Language
JavaScript