De NET tome éste código:
Código:
que supuestamente retorna TODAS las fuentes del browser.const getInstalledFonts = async () => { const { state } = await navigator.permissions.query({ name: "font-access" }) if (state === "denied") { return [] } const fonts = [] try { for (const { family, fullName } of await navigator.fonts.query()) { fonts.push({ family, fullName }) } } catch {} return fonts; }
Pero no logro obtener la data:
Código:
Pueden indicarme cómo obtener la DATA por favor.function getFonts() { document.write('<pre>'); Q = getInstalledFonts(); document.write(Q); getInstalledFonts().then((fonts) => alert(fonts)); } </script> <body onload="getFonts();">
Gracias