Answers for "het favicon from website react js"

0

favicon react render

<link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon">
Posted by: Guest on August-21-2021
1

how to change favicon dynamic in react js

import React from "react";

function getFaviconEl() {
  return document.getElementById("favicon");
}

function App() {

  const handleGoogle = () => {
    const favicon = getFaviconEl(); // Accessing favicon element
    favicon.href = "https://www.google.com/favicon.ico";  };

  const handleYoutube = () => {
    const favicon = getFaviconEl();
    favicon.href = " https://s.ytimg.com/yts/img/favicon-vfl8qSV2F.ico";  };

  return (
    <div className="App">
      <h1>Dynamically changing favicon</h1>
      <button onClick={handleGoogle}>Google</button>      <button onClick={handleYoutube}>YouTube</button>    </div>
  );
}

export default App;
Posted by: Guest on August-25-2021

Browse Popular Code Answers by Language