Back to Content

EventSource: url property

files/en-us/web/api/eventsource/url/index.md

latest613 B
Original Source

{{APIRef("Server Sent Events")}}{{AvailableInWorkers}}

The url read-only property of the {{domxref("EventSource")}} interface returns a string representing the URL of the source.

Value

A string representing the URL of the source.

Examples

js
const evtSource = new EventSource("sse.php");
console.log(evtSource.url);

[!NOTE] You can find a full example on GitHub — see Simple SSE demo using PHP.

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also

  • {{domxref("EventSource")}}