skip to Main Content

Border color bootstrap @print not working – Twitter bootstrap

$("#print_btn_tm").click(function() { var link = '<link href=<?php echo base_url("../bootstrap/css/bootstrap.css") ?> rel="stylesheet" />'; var divContents2 = link+$("#print1").html(); var printWindow2 = window.open('', '', 'height=400,width=600'); setTimeout(function (){ printWindow2.document.write(divContents2); },1500); setTimeout(function (){ printWindow2.print(); printWindow2.close(); },2000); }); .table thead tr td,.table tbody tr td{ border-width:…

VIEW QUESTION

Why Bootstrap 3 Collapse is not synchronized with checkbox state on double click? – Twitter bootstrap

According to this question: "Twitter Bootstrap 3 collapse when checkbox checked" i've tried this solution, because it is simple and clean. http://jsfiddle.net/L0h3s7uf/1/ <div class="panel-group driving-license-settings" id="accordion"> <div class="panel panel-default"> <div class="panel-heading"> <h4 class="panel-title"> <div class="checkbox"> <label data-toggle="collapse" data-target="#collapseOne"> <input type="checkbox"/>…

VIEW QUESTION

CakePHP 3.4 load jQuery to layout – Twitter bootstrap

I started using libraries like jQuery or Twitter Bootstrap with composer. Now I want to load the jquery.min.js from /vendor/components/jquery/ into my /src/Template/Layout/default.ctp. How can I do that? Because using a normal uri doesn't work: <script type="text/javascript" src="/vendor/components/jquery/jquery.min.js"></script> Cake doesn't…

VIEW QUESTION

jQuery events not listened anymore when pagination – Twitter bootstrap

I'm using pagination implemented in bootstrap-table, and I recently noticed that when use it, my custom jQuery script doesn't work anymore. To be more precise, here is a snippet : $(document).ready(function() { $('.form-modal-confirm-remove').click(function() { alert("Test"); }); }); <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script…

VIEW QUESTION
Back To Top
Search