Folder Structure in CI-3

There are only two main folder : 1. system and 2. application. system folder is a core files folder of ci so dont disturb it. application folder is customizable folder.…

0 Comments

jQuery Checkbox “checked” event

$(document).ready(function() { $('#premium_services').change(function() { if($(this).is(":checked")) { var returnVal = confirm("Are you sure?"); $(this).attr("checked", returnVal); } }); }); $(document).ready(function() { $('#premium_services').change(function() { if($(this).is(":checked")) { let premium_services = 500; $('#premium_cost').text(premium_services); } else{…

0 Comments

ckeditor in laravel

In this tutorial, we are going to create a new Laravel application for creating blogs or posts. While creating a blog we’ll use CKEditor to take input or HTML input…

0 Comments

Post loading on page scroll

Friends, as you must have seen in WordPress, when we go to the page containing the block post and scroll to it, the block posts open automatically on infinite scroll.…

0 Comments

Custom Scrollbar Using CSS

<style> /* width */ .verticlescroll::-webkit-scrollbar { width: 20px; } /*Track */ .verticlescroll::-webkit-scrollbar-track { box-shadow: inset 0 0 5px grey; border-radius: 10px; } /*Handle */ .verticlescroll::-webkit-scrollbar-thumb { background: red; border-radius: 10px;…

0 Comments