Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Try this...</p> <p><code>$('body,html').css('overflow','hidden');</code></p> <p>the <code>,html</code> allows you to also include the <code>&lt;html&gt;</code> because some browsers may use that as the base as oppose to the <code>&lt;body&gt;</code> tag so it helps treating both as if they were one.</p> <p><strong>helpful</strong> any tag should be selected like so <code>$('a');</code> or <code>$('body');</code></p> <p>an element can be selected by <code>id</code> using the prefix <code>#</code> so </p> <p><code>&lt;a id="c_1" &gt;CLick Me&lt;/a&gt;</code> </p> <pre><code>$('#c_1'); </code></pre> <p>or by <code>class</code> with the prefix <code>.</code></p> <p><code>&lt;a class="classname"&gt;Click Me&lt;/a&gt;</code></p> <pre><code>$('.classname'); </code></pre> <p>for more information read <a href="http://api.jquery.com/category/selectors/" rel="noreferrer">http://api.jquery.com/category/selectors/</a> as for the scroll bars they are controlled by css, you could simply go on a css file and do the following.</p> <p><code>body, html {overflow: hidden;}</code></p> <p>the <code>overflow</code> parameter allows you to control what happens when content <code>overflow</code> the assigned width and hight.</p> <p><a href="http://reference.sitepoint.com/css/overflow" rel="noreferrer">http://reference.sitepoint.com/css/overflow</a></p> <p>or the proper reference <a href="http://www.w3.org/TR/CSS2/visufx.html" rel="noreferrer">http://www.w3.org/TR/CSS2/visufx.html</a> </p> <p>sorry if this is too technical, but one day you would have to learn about these :)</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload