Your sheet Guide-1-Step-1 TipWork in tabs! Hold Ctrl while opening a sheet (by mouse or enter) to launch it in a new browser tab. Code Writing Toggle maximize/restored editor To get started quickly, Handcraft includes a whole set of script libraries, icons and more. In this step we'll show you how easy it is to enable jQuery. First, hit the view button (yes, now) to see that jQuery isn't enabled yet. Okay, now click on the "Javascript libraries" link on the right. The first category shown there is script libraries, and jQuery is already selected. The code to include it is right below the selectbox. Copy the jQuery script and paste in the page below, right where we've put a placeholder comment. <page url="/getting-started/step6"> <html> <head> <link rel="stylesheet" href="/getting-started/step6/style.css"/> <!-- paste the jQuery script here, save and view --> <script> $(function() { $('#no').addClass('hidden'); $('#yes').removeClass('hidden'); }); </script> </head> <body> <h1>Is jQuery enabled?</h1> <p id="no">No it isn't.</p> <p id="yes" class="hidden">Yes it is.</p> </body> </html> </page> This is the css page. <page url="/getting-started/step6/style.css" type="css"> .hidden { display: none; } </page>