Click to See Complete Forum and Search --> : REM statments?


Xikron
06-01-2003, 07:10 PM
Hello,

Is there such a thing in HTML as a REM statement. For instance in VB or VBScript a REM statement looks like:
'text1.visible = true
to make the line of code not part of the rest.

thanks in advance
Jesse

JHL
06-01-2003, 09:15 PM
HTML:
<!-- comment -->

JavaScript:
//Comment
or
/*Comment 1
Comment 2
*/

Xikron
06-01-2003, 10:23 PM
thanks for the info

Jesse