How to call hidden div tags by ID or Class in Jquery

How to call hidden div tags by ID or Class in Jquery. Example: HTML: <div id=”off” style=”display:none”> <p> Show me </p> </div> <button id=”load”>Load Selected DIV</button> Script: <script type=”text/javascript”> $(function(){ $(“#load”).click(function(e){ e.preventDefault(); $(“#off:hidden”).slice(0, 10).show(); if ($(“#off:hidden”).length == 0){ return false; } }); }); </script> If you have better solutions, please share in the comments. Thank[…]

CentOS 6.5 – How to boot into graphical Environment

There are ways to boot CentOS into graphical Environment. If you just want to overview and explore the graphical interface of CentOS here’s what you need to do, 1. Login as root with administrator privilege. 2. Type the following: startx however, this is just a one-time fix and does not change the log in process[…]