Bootstrap
1 min read

Make Parent Menu Items Clickable in Bootstrap 3 and 4

By default, Bootstrap parent menu is not clickable, its link only produces a dropdown menu where one can click sub menu’s link. But  we can make it clickable using some lines of jQuery code ,  Adding a jQuery snippet give below will make your parent menu items clickable again! jQuery(‘.dropdown-toggle’).click(function() { if(jQuery(window).width < 960){ var […]

CSS
1 min read

Changing Bootstrap Navbar Breakpoint for version 3.1

If your bootstrap navbar’s number of link is not cover under breakpoint 768px then we can change its breakpoint  like 1280px , 1920 and so on. But always remember  css for bootstrap 3.1 ,boostrap 4 and bootstrap 2 is different so if you ignore this then face problem like on click automatically close of navbar. […]

Javascript
2 mins read

Launch Bootstrap Modal on page load

In this tutorial I am going to show how to create a web page that launch a Bootstrap model automatically whenever its load. Launching Bootstrap Model on page load requires 3 file jquery, Bootstrap CSS and Bootstrap JavaScript file. Working Example Just create a file called launch.html with code below and launch this file, remember […]