lordofthesword8
07-08-2004, 02:02 PM
Whats this?
Ive heard on the forum a few times, but ive never encountered it before.
What is it and what does it do?
LOTS8
check it out for yourself at MSDN (http://msdn.microsoft.com/workshop/author/dhtml/reference/properties/innerhtml.asp?frame=true)
You should just search google
Vincent Puglia
07-08-2004, 02:12 PM
<form name='theForm'>
<input type='checkbox' onclick="document.getElementById('theDiv').innerHTML= (this.checked) ? 'box is checked' : 'box is not checked';"
</form>
<div id='theDiv'></div>
It allows you to alter things on the fly
Vinny