Click to See Complete Forum and Search --> : javascript and html


jsavage
11-17-2006, 11:25 PM
what's the difference?

felgall
11-17-2006, 11:41 PM
HTML defines the content of your web page, stylesheets define its appearance and Javascript defines its behaviour.

HTML is a markup language so you use it to define paragraphs, lists, tables, forms etc.
Javascript is a programming language so you use it to tell the computer what actions to perform such as validating that what was entered into a form matches specified requirements.

Kind of like the difference between frog (HTML) and hop (Javascript).

jsavage
11-17-2006, 11:44 PM
thanks man