Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have some html code on a page that I don't want to erase but make inactive for the short term. How can I make the browser ignore parts of the page in the same way the // works in some programming languages?

share|improve this question
1  
To the down voter: stackoverflow.com/questions/1003841/… – jball Dec 9 '10 at 0:27
1  
Thank you jball for seeing that some of us are beginners and have to start somewhere by asking "stupid questions" – Quazi Dec 9 '10 at 0:36

1 Answer

up vote 10 down vote accepted

Behold HTML comments:

<!-- comment -->

http://www.w3.org/TR/html401/intro/sgmltut.html#idx-HTML

The proper way to delete code without deleting it, of course, is to use version control, which enables you to resurrect old code from the past. Don't get into the habit of accumulating commented-out code in your pages, it's no fun. :)

share|improve this answer
Thank You deceze. That was it. – Quazi Dec 9 '10 at 0:31
1  
+1 for version control! – TrueWill Dec 9 '10 at 1:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.