Page is a not externally linkable
le_gber - 3:49 pm on Jan 8, 2009 (gmt 0)
If you want to hide different divs, or different section of a page use a class instead (class="skip" and .skip{ display:none; }. If it's content you want to display at some point or people to read, use negative positioning rather than display none as the latter would be ignored by screen readers. #skip { position:absolute; left:-999em; }
everything that is included between <div id="skip"> and </div> will be hidden.