Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Comments on theme always not changing

Post

theme always not changing [closed]

+1
−3

Closed as not constructive by Alexei‭ on Aug 2, 2021 at 19:05

This question cannot be answered in a way that is helpful to anyone. It's not possible to learn something from possible answers, except for the solution for the specific problem of the asker.

This question was closed; new answers can no longer be added. Users with the reopen privilege may vote to reopen this question if it has been improved or closed incorrectly.

const body = document.body;
  const light = evt => {
    body.setAttribute('data-theme', 'light');
    localStorage.setItem("theme", "light");
    console.log("light");
  }
  const dark = evt => {
    body.setAttribute('data-theme', 'light');
    localStorage.setItem("theme", "dark");
    console.log("dark");
  }
  const light_radio_btn = document.getElementById("light");
  const dark_radio_btn = document.getElementById('dark');
  light_radio_btn.addEventListener('click',light);
  dark_radio_btn.addEventListener('click',dark);
<input type="radio" id="dark" value="Dark" name="theme"><label for="dark">Dark</label>
<input type="radio" id="light" value="Light" name="theme"><label for="light">Light</label>

When I select a radioButton theme changes. But, when I select another radioButton the theme isn't changing but, I am getting output in console. No error is available also. Earlier, when I was using select option it was working properly. There's no problem in CSS that's why I am not giving CSS scripts. That's very big.

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

2 comment threads

Not reproducible or was caused by a typo (1 comment)
Your dark callback is setting the attribute to "light". (1 comment)
Not reproducible or was caused by a typo
Kevin M. Mansour‭ wrote over 2 years ago

Not reproducible or was caused by a typo. This question likely won't help future visitors.