Skip to content
Advertisement

How will I condition my checkbox according to a status using jquery and PHP

I have a data where you can choose to activate it or inactivate it. The process when you want to choose a status is through a bootstrap toggle switch. I used checkbox to make the toggle switch. The problem is it is not working and I know why. Because it doesn’t have an access to my checkbox, My goal is that inside my form if my data is active the checkbox will automatically be set “checked” and if inactive, the checkbox will be unchecked. Second problem is to my toggle switch is not working.

How can I set the checkbox checked if the status is active and how can I make automatically uncheck inside my form if status is Inactive?

How can I use the toggle switch from bootstrap properly?

What I’ve tried is to condition the checkboxes

Here is the code I’ve tried but still did not work

JavaScript

Here is my code in HTML

JavaScript

JQUERY code

JavaScript

enter image description here

This is suppose to be uncheck if the data is inactive

This is suppose to be unchecked if the data is inactive

Advertisement

Answer

You can use removeAttr() and attr to add checked or remove that attribute . Then , no need to change text from jquery code bootstrap toggle will do itself just specify style and on/off condition.

Demo Code :

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement