Skip to main content
FlowFn
IntegrationsTemplatesPricingDocsBlogSign inStart free
All documentation

v1.28.0

UpdatedJun 6, 2026Reading time1 min read

Released 2026-06-06. Published playgrounds can now read the URL of the page they're on — its query parameters and hash — which previously weren't visible inside the playground sandbox.

Added

  • flowfn.location.query — the page's query parameters as an object. For a visitor on your-site.flowfn.com/?q=abc, your code reads flowfn.location.query.q as 'abc'. flowfn.location.search gives the raw query string.
  • flowfn.location.hash — the URL fragment (e.g. #support). It's also applied to window.location.hash before your code runs, so existing window.location.hash code and in-page #anchor links work.
  • Automatic deep-link scrolling — opening a playground with a fragment that matches an element id (e.g. /#pricing with a <section id="pricing">) scrolls that section into view on load. No code needed.

Why

A playground runs in a sandboxed iframe with its own internal address, so window.location.search inside it was always empty and the page's hash never reached your code. flowfn.location forwards both in. See the Playground SDK reference.

Spotted an issue or have feedback?

support@flowfn.com
Back to docs hub →