Skip to main content
Module

x/fresh/tests/deps.ts>Page#focus

The next-gen web framework.
Extremely Popular
Latest
method Page.prototype.focus
Re-export
import { Page } from "https://deno.land/x/fresh@1.7.1/tests/deps.ts";

This method fetches an element with selector and focuses it. If there's no element matching selector, the method throws an error.

Parameters

selector: string
  • A selector of an element to focus. If there are multiple elements satisfying the selector, the first will be focused.

Returns

Promise<void>

Promise which resolves when the element matching selector is successfully focused. The promise will be rejected if there is no element matching selector.