home.php 421 B

1234567891011
  1. <section>
  2. <h1>Hello World!</h1>
  3. <button class="primary" hx-get="/get/?param=If you see this, it's working!" hx-trigger="click" hx-target="#replacebyget" hx-swap="innerHTML">Click Me!</button>
  4. <div id="replacebyget">
  5. <p>Response should appear here</p>
  6. </div>
  7. </section>
  8. <section>
  9. <h2>Content Rendered At:</h2>
  10. <div hx-get="/get/time.php" hx-trigger="load"></div>
  11. </section>