# Effective _hyperscript A practical reference for writing _hyperscript - a scripting language for the web designed to be embedded in HTML. ## Core Concepts _hyperscript code lives in `_` attributes on HTML elements. Each element's script defines **features** (event handlers, functions, variables) that operate on that element. ```html ``` The language reads like English. Prefer natural phrasing over terse syntax. ## Style: Write English, Not Code ### `the` - Semantic Sugar The word `the` can be inserted almost anywhere for readability. It has no semantic meaning and is ignored by the parser: ```hyperscript -- These are identical: set innerHTML of #d1 to "hello" set the innerHTML of the #d1 to "hello" get the first
  • in the