hello

how to purform javascript inner html loading it is possible? example ?

What do you really intend to do with the inneHTML!? Since we're off the Topic, i'll just write some example to lighten u up! Hoping that this would help.

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 
<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Some Title</titles>
<script type="text/javascript">
<!-- BEGIN HIDING
window.onload = function()
{ document.getElementById('sample').innerHTML = '<input type="text" size="20" value="Things To Do!" />'; 
} 
// DONE HIDING -->
</script>
</head>
<body>
<div id="sample">&nbsp;</div>
</body>
</html>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.