Rajeev
Oct 30 2009, 11:16 AM
hi
how to make html dynamic through html coding plz someone help for this
swordz
Oct 30 2009, 11:59 AM
That's what PHP is for...
Swordz
IamShipon1988
Dec 1 2009, 01:16 PM
Most DHTML content is backed by javascript. Try searching
Dynamic Drive.
localinternettraffic
Sep 28 2010, 10:48 AM
Java Scripts make HTML pages more dynamic.
The <script> tag is used to define a client-side script Like JavaScript.The script element either contains scripting statements.
Such as:
<script type="text/javascript">
document.write("Hello World!")
</script>
jaantje
Nov 2 2010, 05:27 AM
DHTML ,DHTML is NOT a language, DHTML is a TERM describing the art of making dynamic and interactive web pages,DHTML combines HTML, JavaScript, the HTML DOM, and CSS.
web page using DHTML is set up the following way:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>DHTML example</title>
<script type="text/javascript">
function init() {
myObj = document.getElementById("navigation");
// .... more code
}
window.onload=init;
</script>
</head>
<body>
<div id="navigation"></div>
<pre>
Often the code is stored in an external file; this is done by linking the file that contains the JavaScript.
This is helpful when several pages use the same script:
</pre>
<script type="text/javascript" src="myjavascript.js"></script>
</body>
</html>
vikramrandhawa
Sep 20 2011, 04:52 AM
DHTML is a combination of a static markup language (such as HTML), a client-side scripting language (such as JavaScript), a presentation definition language (such as CSS), and the Document Object Model.
eswari
Sep 29 2011, 07:51 AM
DHTML is a term describing the art of making dynamic and interactive web pages. This is the combination of HTML, JavaScript, the HTML DOM, and CSS.
topmakemoneyideas
Sep 29 2011, 08:32 AM
I use a few of these and I am doing quite well thanks for the add information.It’s always a pleasure to see what you come up with next.
morgancartel
Oct 10 2011, 02:00 PM
Nice
aman1
Nov 1 2011, 09:21 AM
Dhtml means dynamic hyper text markup language.Dhtml making the dynamic and interactive web page.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please
click here.