Toggle visibility of element when checkbox is checked/unchecked

Developer
Size
1,824 Kb
Views
48,576

How do I make an toggle visibility of element when checkbox is checked/unchecked?

What is a toggle visibility of element when checkbox is checked/unchecked? How do you make a toggle visibility of element when checkbox is checked/unchecked? This script and codes were developed by Mia Sno on 12 August 2022, Friday.

Toggle visibility of element when checkbox is checked/unchecked Previews

Toggle visibility of element when checkbox is checked/unchecked - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Toggle visibility of element when checkbox is checked/unchecked</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <label for "chkBox">Check me</label>
<input type="checkbox" class="chkBox" name="chkBox" />
<div class="toggledelement">
Hey I'm visible now!
</div> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

Toggle visibility of element when checkbox is checked/unchecked - Script Codes CSS Codes

.toggledelement { display: none; color: red; font-weight: bold;
}

Toggle visibility of element when checkbox is checked/unchecked - Script Codes JS Codes

$(document).ready(function()
{
//make initial check state unchecked
$('.chkBox').prop('checked', false);
//when clicking on checkbox, toggle the visibility of another element
$(".chkBox").click(function() {
$(".toggledelement").slideToggle(500);	});
});
Toggle visibility of element when checkbox is checked/unchecked - Script Codes
Toggle visibility of element when checkbox is checked/unchecked - Script Codes
Home Page Home
Developer Mia Sno
Username mrs_snow
Uploaded August 12, 2022
Rating 3
Size 1,824 Kb
Views 48,576
Do you need developer help for Toggle visibility of element when checkbox is checked/unchecked?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Mia Sno (mrs_snow) Script Codes
Create amazing Facebook ads with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!