Bootstrap Grid

Bootstrap Grid System is mobile-first fluid grid system which is made up of a series rows and columns to provide a structure to website and to place it’s content in the intersected areas easily. The Bootstrap grid is a library of HTML/CSS components that allow you to structure a website and place a website’s content in desired locations …

CodeIgniter Template : Adding Header, Footer and Dynamic Content

CodeIgniter MVC work on a separate layer, applying MVC pattern, it is recommended that header, footer, side menu bar should be separate. Benefits of using these architectures are. If your website contains multiple pages and all have a header, footer and menu bar and if you want to make some changes on header so you …

Set JavaScript Form Action

In this tutorial, we illustrate you an example, which shows how to set JavaScript form action. Sometimes developers want to set form action attribute of a form through programming or through other means. Here, we are using following JavaScript code to set form action on run time. To set form action attribute via JavaScript : document.getElementById(“form_id”).action = “success.php”; …