Javascript uses C-style comments, for block comments (multiline) use:
/*
comments go anywhere in here
*/
for short one line comments use double-slash:
// this is also a comment
Unless it is in a comment, you can't
The proper syntax to insert a multi-line comment into JavaScript is to surround the comment with /* and */ function useless() { /* This function doesn't do anything We should come back to it. Soon. */ }
The comment tags which are The comment tags which are The comment tags which are The comment tags which are The comment tags which are The comment tags which are The comment tags which are The comment tags which are The comment tags which are The comment tags which are The comment tags which are
To add javascript code in HTML, you have to include the script tag on top. It can be added as <script src="source of script"></script>
we can do this using of javascript. you can use this following code: <input type=button value="button" onClick=onclick_function()> here onclick_function() is a function which is called by javascript on clicking the button. javascript code is as follows: <script language="javascript" type="text/javascript"> // your code for onclick_function() function onclick_function(){ alert("Welcome to javascript"); } </script>
Unless it is in a comment, you can't
To get a working comment/feedback box, you will need to use the programming languages HTML and Javascript (javascript is widely used for forms)
The proper syntax to insert a multi-line comment into JavaScript is to surround the comment with /* and */ function useless() { /* This function doesn't do anything We should come back to it. Soon. */ }
The comment tags which are The comment tags which are The comment tags which are The comment tags which are The comment tags which are The comment tags which are The comment tags which are The comment tags which are The comment tags which are The comment tags which are The comment tags which are
If you are asking about posting a comment in Facebook under the main status or picture is an add comment box, put your comment there. In other forums make sure you are a member of the forum and at the end of the discussion there is usually a box for you to add you comment.
For very old devices that aren't able to interpret JavaScript you can hide the script by adding the HTML comment block around the script. To keep this block of interfering with the script itself, you have to use JavaScript comment code to the end of the HTML comment block as well.Here's how.This technique is almost never employed anymore. The browsers that don't support JavaScript natively are that old.
The question is not clear. To add a comment to a cell, right-click on the cell and select the add comment option.
In your HTML add in the tags
Unfortunately, Chrome does not have any way to disable Javascript, nor does it appear to be planned for "any time soon".
HTML:Comment start: Javascript:Use // to comment a single line or /* */ to comment 1 or more lines. For example:// comment a single line/* Everything between these is a comment.Can span multiple lines. */
<!-- Comment Goes Here -->
To add javascript code in HTML, you have to include the script tag on top. It can be added as <script src="source of script"></script>