Check is Absolute URL

Published on

Last updated on

Returns true if the url is an absolute URL

function isAbsolute(url) { return /^https?:\/\//.test(url); }

Learn more about the difference between absolute and relative URLs.