A jQuery linked select dropdown plugin with 2 examples

jQuery linked select

What is a linked select plug-in? In certain situations, you need to present the selectable information to users in dropdowns which is categorized. For example, consider this scenario: Choose a maker of cars: Ford Honda Toyota GM Choose a model based on first selection: Modal 1 Modal 2 Modal 3 Choose the Year of manufacturing … Read more

A jQuery Multi-select List view Plug-in: with Six Options

jQuery multi select style

The multi-select list view plug-in In professional websites, you generally need to select multiple options from one list to the other that are used for specific types of data. For example, select your skills from the available list of HTML, JavaScript, jQuery, Bootstrap, CSS, etc.  This list is generally presented on the left side. You … Read more

HTML Form Validation with Animations by jQuery: 4 Demos

jQuery form animatio custom css

What is formAnimation plug-in about? The formAnimation plug-in is a light-weight plug-in based on jQuery that can be used for showing cool animations for web forms upon invalid submission. You may use this plug-in for simple HTML forms or based on other frameworks like Bootstrap forms as well. Underway, this form validation plug-in uses the … Read more

A jQuery Select Dropdown – An editable input plug-in

jQuery select edit style

The editable jQuery select dropdown In the Bootstrap series of tutorials, I wrote about multi-select dropdown along with searchable option as using the Bootstrap framework. In this tutorial, I am going to show you another plug-in related to HTML select but with editable options. This nice and simple jQuery-based plugin allows adding new options on … Read more

A jQuery based Bootstrap markdown text editor

jQuery text editor image upload

The Bootstrap markdown editor As you work with Bootstrap framework, chances are you may need your users providing a text editor with certain features like heading options, typical italic, bold options, and that also enables uploading the images. As such, the Bootstrap is relatively a new web framework. In spite of many built-in features, many … Read more

List of 3 Free Bootstrap form builders

Bootstrap form builder

The Bootstrap form builders Although, creating Bootstrap based forms in your web projects is the matter of using a few built-in classes. Whether you want to add textboxes, dropdowns, textarea, checkbox or radio buttons; you may use simple HTML tags with Bootstrap frameworks’ CSS classes and form is ready to use with beautiful styles and … Read more

How to Create and Style HTML Checkbox with pure CSS and a plug-in

HTML checkbox bootstrap

The checkbox tag In HTML, you can create a checkbox by using the <input> tag and specify the type = checkbox, as shown in the syntax below: <input type=”checkbox” name=”checkboxName” value=”Value_of_checkbox”> In this tutorial, I will show you how you can create checkboxes in HTML forms. I will also explain how you may style checkboxes … Read more

jQuery AJAX Tutorial: 7 Demos of div, Form, Tabs, Accordion, and Table

jQuery ajax div

Purpose of jQuery AJAX method The jQuery has handy methods to work with AJAX quite simply and easily. The methods include $.ajax, $.post, $.get, $.load, etc. By using these methods, you may accomplish certain tasks like Submitting forms without reloading a web page, pulling data in an autocomplete field, loading table data, using tabs which … Read more

Bootstrap Buttons with 9 Demos

Bootstrap button

The buttons in Bootstrap Bootstrap buttons can be created by using the main class btn followed by its style and size optional classes. For example, btn-info specifies a light blue button with normal size. Similarly, btn-primary is dark blue, btn-success is green and so on. A button with Bootstrap classes: <button type=”button” class=”btn btn-info btn-lg”>A … Read more

4 Demos of Textarea in Bootstrap Forms

Bootstrap textarea

The textarea by using Bootstrap framework By adding the form-control class in the textarea tag, you may create a multiline textarea with Bootstrap. The following example shows two text boxes with and without using the Bootstrap class. The code: <!DOCTYPE html> <html> <head> <link rel=”stylesheet” href=”https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css” integrity=”sha512-dTfge/zgoMYpP7QbHy4gWMEGsbsdZeCXz7irItjcC3sPUFtf0kuFbDz/ixG7ArTxmDjLXDmezHubeNikyKGVyQ==” crossorigin=”anonymous”> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> </head> <body> <div … Read more