React Js check cookie is enabled or disabled
React Js check cookie is enabled or disabled:To check if cookies are enabled or disabled in React.js, you can use the navigator.cookieEnabled
property.
This property returns a boolean value indicating whether the browser allows cookies or not. In your React component, you can access this property using window.navigator.cookieEnabled
.
If the value is true
, cookies are enabled; if it's false
, cookies are disabled. You can then use this information to conditionally render components or handle functionality based on the cookie status




Thanks for your feedback!
Your contributions will help us to improve service.
How can I check if cookies are enabled or disabled in a React.js application?
This React.js code snippet checks whether cookies are enabled or disabled in the user's browser. It utilizes the navigator.cookieEnabled
property to determine the status of cookies.
If cookies are enabled, it displays the message "Cookies are enabled." Otherwise, if cookies are disabled, it shows the message "Cookies are disabled." The code renders this information within a container element using ReactDOM.
React Js check cookie is enabled or disabled Example
<script type="text/babel">
function App() {
const isCookieEnabled = navigator.cookieEnabled;
return (
<div className="container">
<h3>React Js Check Cookie is Enabled or Disabled</h3>
{isCookieEnabled ? (
<p>Cookies are enabled.</p>
) : (
<p>Cookies are disabled.</p>
)}
</div>
);
}
ReactDOM.render(<App />, document.getElementById("app"));
</script>