Tag Archives: Bootstrap toggle kullanımı

Javascript Bootstrap toggle kullanımı

Bootstrap toggle kullanarak javascript ile codeigniter projesinde işlem yapabilirsiniz. Bunun için bootsratp toggle  sitesinden detayları inceleyebilirsiniz. <link href=”https://gitcdn.github.io/bootstrap-toggle/2.2.2/css/bootstrap-toggle.min.css” rel=”stylesheet”> <script src=”https://gitcdn.github.io/bootstrap-toggle/2.2.2/js/bootstrap-toggle.min.js”></script> <input id=”toggle-event” type=”checkbox” data-toggle=”toggle”> <div id=”console-event”></div> <script> $(function() { $(‘#toggle-event’).change(function() { $(‘#console-event’).html(‘Toggle: ‘ + $(this).prop(‘checked’)) }) }) </script> daha sonra kendi projenize göre düzenleyin. <script type=”text/javascript”> $(document).ready(function() { $(function() { $(‘#toggle-event’).change(function() { var isActive =… Daha fazla oku »