<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>bootstrap Archives - Codeplaners</title>
	<atom:link href="https://codeplaners.com/tag/bootstrap/feed/" rel="self" type="application/rss+xml" />
	<link>https://codeplaners.com/tag/bootstrap/</link>
	<description>Code Solution</description>
	<lastBuildDate>Thu, 10 Feb 2022 12:03:23 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>

<image>
	<url>https://codeplaners.com/wp-content/uploads/2020/09/cropped-favicon-social-32x32.png</url>
	<title>bootstrap Archives - Codeplaners</title>
	<link>https://codeplaners.com/tag/bootstrap/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How To Create DataTable In Bootstrap</title>
		<link>https://codeplaners.com/how-to-create-datatable-in-bootstrap/</link>
					<comments>https://codeplaners.com/how-to-create-datatable-in-bootstrap/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 10 Feb 2022 12:03:23 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[DataTable]]></category>
		<category><![CDATA[html]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1399</guid>

					<description><![CDATA[<p>Hi Dev, Today, i we will show you how to create DataTable in bootstrap. This article will give you simple example of how to create DataTable in bootstrap. you will how to create DataTable in bootstrap. In this article, we will implement a how to create DataTable in bootstrap. So let’s follow few step to &#8230; <a href="https://codeplaners.com/how-to-create-datatable-in-bootstrap/" class="more-link">Continue reading<span class="screen-reader-text"> "How To Create DataTable In Bootstrap"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-create-datatable-in-bootstrap/">How To Create DataTable In Bootstrap</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi Dev,</p>
<p>Today, i we will show you how to create DataTable in bootstrap. This article will give you simple example of how to create DataTable in bootstrap. you will how to create DataTable in bootstrap. In this article, we will implement a how to create DataTable in bootstrap. </p>
<p>So let’s follow few step to create example of how to create DataTable in bootstrap.</p>
<p><img decoding="async" style="border: 3px solid #ff5722;" src="https://codeplaners.com/wp-content/uploads/2022/02/datatable.png" alt="How To Create DataTable In Bootstrap" ></p>
<h3 class="step_code">Example</h3>
<pre class="brush: php; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html&gt;

&lt;head&gt;
	&lt;title&gt; How To Create DataTable In Bootstrap&lt;/title&gt;
	&lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.2/css/bootstrap.css&quot; &gt;
	&lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.datatables.net/1.11.3/css/dataTables.bootstrap4.min.css&quot; &gt;
	
&lt;/head&gt;

&lt;body&gt;
   
	
    &lt;div class=&quot;container&quot; style=&quot;padding: 20px 0 0;&quot;&gt;
        &lt;table id=&quot;example&quot; class=&quot;table table-striped table-bordered&quot; style=&quot;width:100%&quot;&gt;
            &lt;thead&gt;
                &lt;tr&gt;
                    &lt;th&gt;Name&lt;/th&gt;
                    &lt;th&gt;Position&lt;/th&gt;
                    &lt;th&gt;Office&lt;/th&gt;
                    &lt;th&gt;Age&lt;/th&gt;
                    &lt;th&gt;Start date&lt;/th&gt;
                    &lt;th&gt;Salary&lt;/th&gt;
                &lt;/tr&gt;
            &lt;/thead&gt;
            &lt;tbody&gt;
                &lt;tr&gt;
                    &lt;td&gt;Tiger Nixon&lt;/td&gt;
                    &lt;td&gt;System Architect&lt;/td&gt;
                    &lt;td&gt;Edinburgh&lt;/td&gt;
                    &lt;td&gt;61&lt;/td&gt;
                    &lt;td&gt;2011/04/25&lt;/td&gt;
                    &lt;td&gt;$320,800&lt;/td&gt;
                &lt;/tr&gt;
                &lt;tr&gt;
                    &lt;td&gt;Garrett Winters&lt;/td&gt;
                    &lt;td&gt;Accountant&lt;/td&gt;
                    &lt;td&gt;Tokyo&lt;/td&gt;
                    &lt;td&gt;63&lt;/td&gt;
                    &lt;td&gt;2011/07/25&lt;/td&gt;
                    &lt;td&gt;$170,750&lt;/td&gt;
                &lt;/tr&gt;
                &lt;tr&gt;
                    &lt;td&gt;Ashton Cox&lt;/td&gt;
                    &lt;td&gt;Junior Technical Author&lt;/td&gt;
                    &lt;td&gt;San Francisco&lt;/td&gt;
                    &lt;td&gt;66&lt;/td&gt;
                    &lt;td&gt;2009/01/12&lt;/td&gt;
                    &lt;td&gt;$86,000&lt;/td&gt;
                &lt;/tr&gt;
               
            &lt;/tbody&gt;
            &lt;tfoot&gt;
                &lt;tr&gt;
                    &lt;th&gt;Name&lt;/th&gt;
                    &lt;th&gt;Position&lt;/th&gt;
                    &lt;th&gt;Office&lt;/th&gt;
                    &lt;th&gt;Age&lt;/th&gt;
                    &lt;th&gt;Start date&lt;/th&gt;
                    &lt;th&gt;Salary&lt;/th&gt;
                &lt;/tr&gt;
            &lt;/tfoot&gt;
        &lt;/table&gt;
    &lt;/div&gt;
    
	&lt;script src=&quot;https://code.jquery.com/jquery-3.5.1.js&quot;&gt;&lt;/script&gt;
	&lt;script src=&quot;https://cdn.datatables.net/1.11.3/js/jquery.dataTables.min.js&quot;&gt;&lt;/script&gt;
	&lt;script src=&quot;https://cdn.datatables.net/1.11.3/js/dataTables.bootstrap4.min.js&quot;&gt;&lt;/script&gt;

	&lt;script&gt;

		$(document).ready(function() {
			$('#example').DataTable();
		} );
	&lt;/script&gt;

&lt;/body&gt;

&lt;/html&gt;


</pre>
<p>I hope it will assist you…</p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-create-datatable-in-bootstrap/">How To Create DataTable In Bootstrap</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/how-to-create-datatable-in-bootstrap/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Create Multi Step Form in jQuery</title>
		<link>https://codeplaners.com/how-to-create-multi-step-form-in-jquery/</link>
					<comments>https://codeplaners.com/how-to-create-multi-step-form-in-jquery/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Mon, 16 Aug 2021 00:09:32 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[multi step form]]></category>
		<category><![CDATA[Source Code]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1240</guid>

					<description><![CDATA[<p>Hi, Today, i we will show you how to create multi step form in jQuery. This article will give you simple example of how to create multi step form in jQuery. you will learn how to create multi step form in jQuery. So let’s follow few step to create example of how to create multi &#8230; <a href="https://codeplaners.com/how-to-create-multi-step-form-in-jquery/" class="more-link">Continue reading<span class="screen-reader-text"> "How To Create Multi Step Form in jQuery"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-create-multi-step-form-in-jquery/">How To Create Multi Step Form in jQuery</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi,</p>
<p>Today, i we will show you how to create multi step form in jQuery. This article will give you simple example of how to create multi step form in jQuery. you will learn how to create multi step form in jQuery. </p>
<p>So let’s follow few step to create example of how to create multi step form in jQuery.</p>
<p><img decoding="async" style="border: 3px solid #ff5722;" alt="how to create multi step form in jQuery" class="lazyloaded" src="https://codeplaners.com/wp-content/uploads/2021/08/multi-step-form.png"></p>
<h3 class="step_code">index.html</h3>
<pre class="brush: xml; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;title&gt;How To Create Multi Step Form in jQuery&lt;/title&gt;
    &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;style.css&quot;&gt;
    &lt;script src=&quot;https://code.jquery.com/jquery-3.4.1.js&quot;&gt;&lt;/script&gt;
    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/jquery-validation@1.17.0/dist/jquery.validate.min.js&quot;&gt;&lt;/script&gt;
    &lt;script src=&quot;custom.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt;
&lt;body style=&quot;background-color: #f6f6f6;&quot;&gt;
    &lt;h1 style=&quot;margin-top:50px; color: #333;&quot;&gt;How To Create Multi Step Form in jQuery&lt;/h1&gt;
    &lt;form id=&quot;myForm&quot; action=&quot;#&quot; method=&quot;POST&quot;&gt;
        &lt;h1&gt;Registration Form&lt;/h1&gt;
        &lt;!-- One &quot;tab&quot; for each step in the form: --&gt;
        &lt;div class=&quot;tab&quot;&gt;Name:
            &lt;p&gt;&lt;input placeholder=&quot;First name&quot; name=&quot;fname&quot;&gt;&lt;/p&gt;
            &lt;p&gt;&lt;input placeholder=&quot;Last name&quot; name=&quot;lname&quot;&gt;&lt;/p&gt;
        &lt;/div&gt;
        &lt;div class=&quot;tab&quot;&gt;Contact Info:
            &lt;p&gt;&lt;input placeholder=&quot;E-mail&quot; name=&quot;email&quot;&gt;&lt;/p&gt;
            &lt;p&gt;&lt;input placeholder=&quot;Phone&quot; name=&quot;phone&quot;&gt;&lt;/p&gt;
        &lt;/div&gt;
        &lt;div class=&quot;tab&quot;&gt;Birthday:
            &lt;p&gt;&lt;input placeholder=&quot;dd&quot; name=&quot;date&quot;&gt;&lt;/p&gt;
            &lt;p&gt;&lt;input placeholder=&quot;mm&quot; name=&quot;month&quot;&gt;&lt;/p&gt;
            &lt;p&gt;&lt;input placeholder=&quot;yyyy&quot; name=&quot;year&quot;&gt;&lt;/p&gt;
        &lt;/div&gt;
        &lt;div class=&quot;tab&quot;&gt;Login Info:
            &lt;p&gt;&lt;input placeholder=&quot;Username&quot; name=&quot;username&quot;&gt;&lt;/p&gt;
            &lt;p&gt;&lt;input placeholder=&quot;Password&quot; name=&quot;password&quot; type=&quot;password&quot;&gt;&lt;/p&gt;
        &lt;/div&gt;
        &lt;div style=&quot;overflow:auto;&quot;&gt;
            &lt;div style=&quot;float:right; margin-top: 5px;&quot;&gt;
                &lt;button type=&quot;button&quot; class=&quot;previous&quot;&gt;Previous&lt;/button&gt;
                &lt;button type=&quot;button&quot; class=&quot;next&quot;&gt;Next&lt;/button&gt;
                &lt;button type=&quot;button&quot; class=&quot;submit&quot;&gt;Submit&lt;/button&gt;
            &lt;/div&gt;
        &lt;/div&gt;
        &lt;!-- Circles which indicates the steps of the form: --&gt;
        &lt;div style=&quot;text-align:center;margin-top:40px;&quot;&gt;
            &lt;span class=&quot;step&quot;&gt;1&lt;/span&gt;
            &lt;span class=&quot;step&quot;&gt;2&lt;/span&gt;
            &lt;span class=&quot;step&quot;&gt;3&lt;/span&gt;
            &lt;span class=&quot;step&quot;&gt;4&lt;/span&gt;
        &lt;/div&gt;
    &lt;/form&gt;
&lt;/body&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
    $(document).ready(function(){
        $.validator.addMethod('date', function(value, element, param) {
            return (value != 0) &amp;&amp; (value &lt;= 31) &amp;&amp; (value == parseInt(value, 10));
        }, 'Please enter a valid date!');
        $.validator.addMethod('month', function(value, element, param) {
            return (value != 0) &amp;&amp; (value &lt;= 12) &amp;&amp; (value == parseInt(value, 10));
        }, 'Please enter a valid month!');
        $.validator.addMethod('year', function(value, element, param) {
            return (value != 0) &amp;&amp; (value &gt;= 1900) &amp;&amp; (value == parseInt(value, 10));
        }, 'Please enter a valid year not less than 1900!');
        $.validator.addMethod('username', function(value, element, param) {
            var nameRegex = /^&#x5B;a-zA-Z0-9]+$/;
            return value.match(nameRegex);
        }, 'Only a-z, A-Z, 0-9 characters are allowed');

        var val = {
            // Specify validation rules
            rules: {
                fname: &quot;required&quot;,
                email: {
                    required: true,
                    email: true
                },
                phone: {
                    required:true,
                    minlength:10,
                    maxlength:10,
                    digits:true
                },
                date:{
                    date:true,
                    required:true,
                    minlength:2,
                    maxlength:2,
                    digits:true
                },
                month:{
                    month:true,
                    required:true,
                    minlength:2,
                    maxlength:2,
                    digits:true
                },
                year:{
                    year:true,
                    required:true,
                    minlength:4,
                    maxlength:4,
                    digits:true
                },
                username:{
                    username:true,
                    required:true,
                    minlength:4,
                    maxlength:16,
                },
                password:{
                    required:true,
                    minlength:8,
                    maxlength:16,
                }
            },
            // Specify validation error messages
            messages: {
                fname:      &quot;First name is required&quot;,
                email: {
                    required:   &quot;Email is required&quot;,
                    email:      &quot;Please enter a valid e-mail&quot;,
                },
                phone:{
                    required:   &quot;Phone number is requied&quot;,
                    minlength:  &quot;Please enter 10 digit mobile number&quot;,
                    maxlength:  &quot;Please enter 10 digit mobile number&quot;,
                    digits:     &quot;Only numbers are allowed in this field&quot;
                },
                date:{
                    required:   &quot;Date is required&quot;,
                    minlength:  &quot;Date should be a 2 digit number, e.i., 01 or 20&quot;,
                    maxlength:  &quot;Date should be a 2 digit number, e.i., 01 or 20&quot;,
                    digits:     &quot;Date should be a number&quot;
                },
                month:{
                    required:   &quot;Month is required&quot;,
                    minlength:  &quot;Month should be a 2 digit number, e.i., 01 or 12&quot;,
                    maxlength:  &quot;Month should be a 2 digit number, e.i., 01 or 12&quot;,
                    digits:     &quot;Only numbers are allowed in this field&quot;
                },
                year:{
                    required:   &quot;Year is required&quot;,
                    minlength:  &quot;Year should be a 4 digit number, e.i., 2018 or 1990&quot;,
                    maxlength:  &quot;Year should be a 4 digit number, e.i., 2018 or 1990&quot;,
                    digits:     &quot;Only numbers are allowed in this field&quot;
                },
                username:{
                    required:   &quot;Username is required&quot;,
                    minlength:  &quot;Username should be minimum 4 characters&quot;,
                    maxlength:  &quot;Username should be maximum 16 characters&quot;,
                },
                password:{
                    required:   &quot;Password is required&quot;,
                    minlength:  &quot;Password should be minimum 8 characters&quot;,
                    maxlength:  &quot;Password should be maximum 16 characters&quot;,
                }
            }
        }
        $(&quot;#myForm&quot;).multiStepForm(
        {
            // defaultStep:0,
            beforeSubmit : function(form, submit){
                console.log(&quot;called before submiting the form&quot;);
                console.log(form);
                console.log(submit);
            },
            validations:val,
        }
        ).navigateTo(0);
    });
&lt;/script&gt;
&lt;/html&gt;
</pre>
<h3 class="step_code">style.css</h3>
<pre class="brush: css; title: ; notranslate">
&lt;style&gt;
* {
    box-sizing: border-box;
}
.tab{
    display: none;
    width: 100%;
    height: 50%;
    margin: 0px auto;
}
.current{
    display: block;
}

body {
    background-color: #f1f1f1;
}

form {
    background-color: #ffffff;
    margin: 0 auto;
    font-family: Raleway;
    padding: 40px;
    width: 40%;
    min-width: 300px;
}

h1 {
    text-align: center;
}

input {
    padding: 10px;
    width: 100%;
    font-size: 17px;
    font-family: Raleway;
    border: 1px solid #aaaaaa;
}

button {
    background-color: #4CAF50;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 17px;
    font-family: Raleway;
    cursor: pointer;
}

button:hover {
    opacity: 0.8;
}

.previous {
    background-color: #bbbbbb;
}

/* form: */
.step {
    height: 30px;
    width: 30px;
    cursor: pointer;
    margin: 0 2px;
    color: #fff;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.8;
    padding: 5px
}

.step.active {
    opacity: 1;
    background-color: #69c769;
}

.step.finish {
    background-color: #4CAF50;
}

.error {
    color: #f00;
}
&lt;/style&gt;
</pre>
<h3 class="step_code">custom.js</h3>
<pre class="brush: jscript; title: ; notranslate">
&lt;script&gt;
(function ( $ ) {
    $.fn.multiStepForm = function(args) {
        if(args === null || typeof args !== 'object' || $.isArray(args))
            throw  &quot; : Called with Invalid argument&quot;;
            var form = this;
            var tabs = form.find('.tab');
            var steps = form.find('.step');
            steps.each(function(i, e){
                $(e).on('click', function(ev){
                });
            });
            form.navigateTo = function (i) {/*index*/
            /*Mark the current section with the class 'current'*/
            tabs.removeClass('current').eq(i).addClass('current');
            // Show only the navigation buttons that make sense for the current section:
            form.find('.previous').toggle(i &gt; 0);
            atTheEnd = i &gt;= tabs.length - 1;
            form.find('.next').toggle(!atTheEnd);
            // console.log('atTheEnd='+atTheEnd);
            form.find('.submit').toggle(atTheEnd);
            fixStepIndicator(curIndex());
            return form;
        }
        function curIndex() {
            /*Return the current index by looking at which section has the class 'current'*/
            return tabs.index(tabs.filter('.current'));
        }
        function fixStepIndicator(n) {
            steps.each(function(i, e){
                i == n ? $(e).addClass('active') : $(e).removeClass('active');
            });
        }
        /* Previous button is easy, just go back */
        form.find('.previous').click(function() {
            form.navigateTo(curIndex() - 1);
        });

        /* Next button goes forward iff current block validates */
        form.find('.next').click(function() {
            if('validations' in args &amp;&amp; typeof args.validations === 'object' &amp;&amp; !$.isArray(args.validations)){
                if(!('noValidate' in args) || (typeof args.noValidate === 'boolean' &amp;&amp; !args.noValidate)){
                    form.validate(args.validations);
                    if(form.valid() == true){
                        form.navigateTo(curIndex() + 1);
                        return true;
                    }
                    return false;
                }
            }
            form.navigateTo(curIndex() + 1);
        });
        form.find('.submit').on('click', function(e){
            if(typeof args.beforeSubmit !== 'undefined' &amp;&amp; typeof args.beforeSubmit !== 'function')
                args.beforeSubmit(form, this);
                /*check if args.submit is set false if not then form.submit is not gonna run, if not set then will run by default*/        
            if(typeof args.submit === 'undefined' || (typeof args.submit === 'boolean' &amp;&amp; args.submit)){
                form.submit();
            }
            return form;
        });
        /*By default navigate to the tab 0, if it is being set using defaultStep property*/
        typeof args.defaultStep === 'number' ? form.navigateTo(args.defaultStep) : null;
        form.noValidate = function() {
    
        }
        return form;
    };
}( jQuery ));
&lt;/script&gt;
</pre>
<p>I hope it will assist you…</p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-create-multi-step-form-in-jquery/">How To Create Multi Step Form in jQuery</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/how-to-create-multi-step-form-in-jquery/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>PHP 8 Multiple Select Dropdown Example</title>
		<link>https://codeplaners.com/php-8-multiple-select-dropdown-example/</link>
					<comments>https://codeplaners.com/php-8-multiple-select-dropdown-example/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 10 Aug 2021 10:51:12 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[PHP 8]]></category>
		<category><![CDATA[Source Code]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1165</guid>

					<description><![CDATA[<p>Hi Dev, Today, i we will show you php 8 multiple select dropdown example. This article will give you simple example of php 8 multiple select dropdown example. you will learn get php 8 multiple select dropdown example. So let’s follow few step to create example of php 8 multiple select dropdown example. Example: index.php &#8230; <a href="https://codeplaners.com/php-8-multiple-select-dropdown-example/" class="more-link">Continue reading<span class="screen-reader-text"> "PHP 8 Multiple Select Dropdown Example"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/php-8-multiple-select-dropdown-example/">PHP 8 Multiple Select Dropdown Example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi Dev,</p>
<p>Today, i we will show you php 8 multiple select dropdown example. This article will give you simple example of php 8 multiple select dropdown example. you will learn get php 8 multiple select dropdown example. So let’s follow few step to create example of php 8 multiple select dropdown example.</p>
<p><img decoding="async" style="border: 3px solid #ff5722;" alt="PHP 8 Multiple Select Dropdown Example" class="lazyloaded" src="https://codeplaners.com/wp-content/uploads/2021/08/multipleselectdropdown.png"></p>
<h3>Example:</h3>
<p><strong>index.php</strong></p>
<pre class="brush: php; title: ; notranslate">
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
   &lt;meta charset=&quot;utf-8&quot;&gt;
   &lt;title&gt;php 8 Multiple Select Dropdown Example&lt;/title&gt;
   &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1, shrink-to-fit=no&quot;&gt;
   &lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.gstatic.com&quot;&gt;
   &lt;link href=&quot;https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@200&amp;display=swap&quot; rel=&quot;stylesheet&quot;&gt;
   &lt;link rel=&quot;stylesheet&quot; href=&quot;https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css&quot;&gt;
&lt;style&gt;
body{
	background:#f1f1f1;
}
.error{
	color:red;
}
select{
	width: 100%;
	min-height:150px;
}
.main-box{
	border-radius:5px;
	background:#fff;
	padding:15px;
	border:1px solid #f6f6f6;
	box-shadow:2px 2px 5px #ccc;
}
.select-tag{
	background:#48161D;
	color:#fff;
	border-radius:15px;
	display: inline-block;
	font-size:14px;
	padding:3px 15px;
	margin-left:5px;
}
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
   &lt;div class=&quot;container mt-5 pt-5&quot;&gt;
    &lt;div class=&quot;row&quot;&gt;
     &lt;div class=&quot;col-md-6 main-box offset-md-3&quot;&gt;
    &lt;form action=&quot;&quot; method=&quot;post&quot; class=&quot;mb-3&quot;&gt;
       &lt;div class=&quot;row&quot;&gt;
        &lt;div class=&quot;col-md-12 text-center title mb-2&quot;&gt;
         &lt;h4&gt;php 8 Multiple Select Dropdown Example&lt;/h4&gt;
        &lt;/div&gt;
        &lt;div class=&quot;col-md-12&quot;&gt;
             &lt;select name=&quot;lang&#x5B;]&quot; multiple class=&quot;form-control&quot;&gt;
                &lt;option value=&quot;&quot; disabled selected&gt;Choose option&lt;/option&gt;
                &lt;option value=&quot;Laravel&quot;&gt;Laravel&lt;/option&gt;
                &lt;option value=&quot;Php&quot;&gt;Php&lt;/option&gt;
                &lt;option value=&quot;Jquery&quot;&gt;Jquery&lt;/option&gt;
                &lt;option value=&quot;Node Js&quot;&gt;NodeJs&lt;/option&gt;
                &lt;option value=&quot;Bootstrap&quot;&gt;Bootstrap&lt;/option&gt;
             &lt;/select&gt;
        &lt;/div&gt;
        &lt;div class=&quot;col-md-12 text-center mt-4&quot;&gt;
             &lt;input type=&quot;submit&quot; name=&quot;submit&quot; vlaue=&quot;Choose options&quot; class=&quot;btn btn-success btn-sm&quot;&gt;
        &lt;/div&gt;
        &lt;div class=&quot;col-md-12 text-center mt-2&quot;&gt;
          &lt;?php
             if(isset($_POST&#x5B;'submit'])){
               if(!empty($_POST&#x5B;'lang'])) {
                  foreach($_POST&#x5B;'lang'] as $selected){
                    echo '&lt;p class=&quot;select-tag mt-3&quot;&gt;'.$selected.'&lt;/p&gt;';
                  }          
               }else{
                echo '&lt;p class=&quot;error alert alert-danger mt-3&quot;&gt;Please select any value&lt;/p&gt;';
               }
             }
          ?&gt;
        &lt;/div&gt;
       &lt;/div&gt;
    &lt;/form&gt;
     &lt;/div&gt;
    &lt;/div&gt;
   &lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>I hope it will assist you…</p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/php-8-multiple-select-dropdown-example/">PHP 8 Multiple Select Dropdown Example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/php-8-multiple-select-dropdown-example/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Bootstrap Input add multiple tags example</title>
		<link>https://codeplaners.com/bootstrap-input-add-multiple-tags-example/</link>
					<comments>https://codeplaners.com/bootstrap-input-add-multiple-tags-example/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 10 Aug 2021 10:26:00 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[Source Code]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1161</guid>

					<description><![CDATA[<p>Hi Dev, Today, i we will show you bootstrap input add multiple tags example. This article will give you simple example of bootstrap input add multiple tags example. you will learn get bootstrap input add multiple tags example. So let’s follow few step to create example of bootstrap input add multiple tags example. bootstrap.min.css bootstrap.min.js &#8230; <a href="https://codeplaners.com/bootstrap-input-add-multiple-tags-example/" class="more-link">Continue reading<span class="screen-reader-text"> "Bootstrap Input add multiple tags example"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/bootstrap-input-add-multiple-tags-example/">Bootstrap Input add multiple tags example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi Dev,</p>
<p>Today, i we will show you bootstrap input add multiple tags example. This article will give you simple example of bootstrap input add multiple tags example. you will learn get bootstrap input add multiple tags example. So let’s follow few step to create example of bootstrap input add multiple tags example.</p>
<p><img decoding="async" style="border: 3px solid #ff5722;" alt="Bootstrap Input add multiple tags example" class=" lazyloaded" src="https://codeplaners.com/wp-content/uploads/2021/08/tagimage.png"></p>
<ul>
<li><strong>bootstrap.min.css</strong></li>
<li><strong>bootstrap.min.js</strong></li>
<li><strong>jquery.min.js</strong></li>
<li><strong>tagmanager.min.css</strong></li>
<li><strong>tagmanager.min.js</strong></li>
</ul>
<h3>Example:</h3>
<pre class="brush: xml; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;title&gt;Bootstrap Input multiple tags example&lt;/title&gt;
    &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css&quot;&gt;
    &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/tagmanager/3.0.2/tagmanager.min.css&quot;&gt;
    &lt;script type=&quot;text/javascript&quot; src=&quot;https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js&quot;&gt;&lt;/script&gt;
    &lt;script type=&quot;text/javascript&quot; src=&quot;https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js&quot;&gt;&lt;/script&gt;
    &lt;script type=&quot;text/javascript&quot; src=&quot;https://cdnjs.cloudflare.com/ajax/libs/tagmanager/3.0.2/tagmanager.min.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;div class=&quot;container&quot;&gt;
        &lt;div class=&quot;row&quot;&gt;
            &lt;div class=&quot;col-md-12&quot;&gt;
                &lt;form&gt;
                    &lt;div class=&quot;form-group&quot;&gt;
                        &lt;label&gt;Name:&lt;/label&gt;
                        &lt;input type=&quot;text&quot; name=&quot;name&quot; class=&quot;form-control&quot; &gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;form-group&quot;&gt;
                        &lt;label&gt;Add Tags:&lt;/label&gt;&lt;br/&gt;
                        &lt;input type=&quot;text&quot; name=&quot;tags&quot; placeholder=&quot;Tags&quot; class=&quot;tm-input form-control tm-input-info&quot;/&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;form-group&quot;&gt;
                        &lt;label&gt;Details:&lt;/label&gt;
                        &lt;textarea class=&quot;form-control&quot;&gt;&lt;/textarea&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;form-group&quot;&gt;
                        &lt;button class=&quot;btn btn-success&quot;&gt;Submit&lt;/button&gt;
                    &lt;/div&gt;
                &lt;/form&gt;
            &lt;/div&gt;
        &lt;/div&gt;
    &lt;/div&gt;
    &lt;script type=&quot;text/javascript&quot;&gt;
        $(&quot;.tm-input&quot;).tagsManager();
    &lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>I hope it will assist you…</p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/bootstrap-input-add-multiple-tags-example/">Bootstrap Input add multiple tags example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/bootstrap-input-add-multiple-tags-example/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Redirect Another Webpage</title>
		<link>https://codeplaners.com/how-to-redirect-another-webpage/</link>
					<comments>https://codeplaners.com/how-to-redirect-another-webpage/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 22 Jul 2021 09:12:04 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[redirect another webpage]]></category>
		<category><![CDATA[Source Code]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1096</guid>

					<description><![CDATA[<p>Hi, Today, i we will show you how to redirect another webpage. This article will give you simple example of how to redirect another webpage. you will learn how to redirect another webpage. So let’s follow few step to create example of how to redirect another webpage. HTML redirects add your index file : &#60;meta &#8230; <a href="https://codeplaners.com/how-to-redirect-another-webpage/" class="more-link">Continue reading<span class="screen-reader-text"> "How to Redirect Another Webpage"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-redirect-another-webpage/">How to Redirect Another Webpage</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi,</p>
<p>Today, i we will show you how to redirect another webpage. This article will give you simple example of how to redirect another webpage. you will learn how to redirect another webpage. So let’s follow few step to create example of how to redirect another webpage.</p>
<h3>HTML redirects</h3>
<p>add your index file <head>:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;meta http-equiv=&quot;refresh&quot; content=&quot;0; URL='http://new-website.com'&quot; /&gt;
</pre>
<h3>JavaScript redirects</h3>
<pre class="brush: xml; title: ; notranslate">
window.location = &quot;http://new-website.com&quot;;

window.location.href = &quot;http://new-website.com&quot;;
window.location.assign(&quot;http://new-website.com&quot;);
window.location.replace(&quot;http://new-website.com&quot;);
</pre>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-redirect-another-webpage/">How to Redirect Another Webpage</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/how-to-redirect-another-webpage/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Hide Show Password In Bootstrap</title>
		<link>https://codeplaners.com/hide-show-password-in-bootstrap/</link>
					<comments>https://codeplaners.com/hide-show-password-in-bootstrap/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sun, 18 Jul 2021 23:16:20 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Source Code]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1092</guid>

					<description><![CDATA[<p>Hi, Today, i we will show you hide show password in bootstrap. This article will give you simple example of hide show password in bootstrap. you will learn hide show password in bootstrap. So let’s follow few step to create example of hide show password in bootstrap. Example index.php &#60;!DOCTYPE html&#62; &#60;html&#62; &#60;head&#62; &#60;title&#62;Hide Show &#8230; <a href="https://codeplaners.com/hide-show-password-in-bootstrap/" class="more-link">Continue reading<span class="screen-reader-text"> "Hide Show Password In Bootstrap"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/hide-show-password-in-bootstrap/">Hide Show Password In Bootstrap</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi,</p>
<p>Today, i we will show you hide show password in bootstrap. This article will give you simple example of hide show password in bootstrap. you will learn hide show password in bootstrap. So let’s follow few step to create example of hide show password in bootstrap.</p>
<p><img decoding="async" style="border: 3px solid #ff5722;" alt="Hide Show Password In Bootstrap" src="https://codeplaners.com/wp-content/uploads/2021/07/showhidepassword.png"></p>
<h3>Example</h3>
<p><strong>index.php</strong></p>
<pre class="brush: php; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;title&gt;Hide Show Password In Bootstrap  - Codeplaners.com&lt;/title&gt;
    &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css&quot;&gt;
    &lt;script type=&quot;text/javascript&quot; src=&quot;https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js&quot;&gt;&lt;/script&gt;
    &lt;script type=&quot;text/javascript&quot; src=&quot;https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js&quot;&gt;&lt;/script&gt;
    &lt;script type=&quot;text/javascript&quot; src=&quot;https://cdnjs.cloudflare.com/ajax/libs/bootstrap-show-password/1.0.3/bootstrap-show-password.min.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;div class=&quot;container&quot;&gt;
        &lt;form&gt;
            &lt;div class=&quot;form-group&quot;&gt;
                &lt;label&gt;Username:&lt;/label&gt;
                &lt;input type=&quot;text&quot; name=&quot;username&quot; class=&quot;form-control&quot;&gt;
            &lt;/div&gt;
            &lt;div class=&quot;form-group&quot;&gt;
                &lt;label&gt;Password:&lt;/label&gt;
                &lt;input type=&quot;password&quot; id=&quot;password&quot; name=&quot;password&quot; class=&quot;form-control&quot; data-toggle=&quot;password&quot;&gt;
            &lt;/div&gt;
            &lt;div class=&quot;form-group&quot;&gt;
                &lt;button class=&quot;btn btn-success&quot;&gt;Submit&lt;/button&gt;
            &lt;/div&gt;
        &lt;/form&gt;
    &lt;/div&gt;
    &lt;script type=&quot;text/javascript&quot;&gt;
        $(&quot;#password&quot;).password('toggle');
    &lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>The post <a rel="nofollow" href="https://codeplaners.com/hide-show-password-in-bootstrap/">Hide Show Password In Bootstrap</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/hide-show-password-in-bootstrap/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Bootstrap 4 Select DropDown With Validation Example</title>
		<link>https://codeplaners.com/bootstrap-4-select-dropdown-with-validation-example/</link>
					<comments>https://codeplaners.com/bootstrap-4-select-dropdown-with-validation-example/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 09 Jul 2021 00:32:44 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[bootstrap 4]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Source Code]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1069</guid>

					<description><![CDATA[<p>Today, i we will show you bootstrap 4 select dropDown with validation example. This article will give you simple example of bootstrap 4 select dropDown with validation example. you will learn bootstrap 4 select dropDown with validation example. So let’s follow few step to create example of bootstrap 4 select dropDown with validation example. Example &#8230; <a href="https://codeplaners.com/bootstrap-4-select-dropdown-with-validation-example/" class="more-link">Continue reading<span class="screen-reader-text"> "Bootstrap 4 Select DropDown With Validation Example"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/bootstrap-4-select-dropdown-with-validation-example/">Bootstrap 4 Select DropDown With Validation Example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Today, i we will show you bootstrap 4 select dropDown with validation example. This article will give you simple example of bootstrap 4 select dropDown with validation example. you will learn bootstrap 4 select dropDown with validation example. So let’s follow few step to create example of bootstrap 4 select dropDown with validation example.</p>
<p><img decoding="async" style="border: 3px solid #ff5722;" alt="Bootstrap 4 Select DropDown With Validation Example" src="https://codeplaners.com/wp-content/uploads/2021/07/Validation.png"></p>
<h3>Example</h3>
<pre class="brush: xml; title: ; notranslate">
&lt;html&gt;
&lt;head&gt;
    &lt;title&gt;Bootstrap 4 Select DropDown With Validation Example - codeplaners&lt;/title&gt;
    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css&quot;&gt;
    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/select2/3.5.0/select2.min.css&quot; /&gt;
    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/select2/3.5.0/select2-bootstrap.min.css&quot; /&gt;
&lt;body&gt;

&lt;div class=&quot;continer&quot;&gt;
    &lt;div class=&quot;row mt-5 pt-5&quot;&gt;
        &lt;div class=&quot;col-md-5 text-center offset-md-3 mt-5 pt-5&quot;&gt;
            &lt;form id=&quot;select2Form&quot; method=&quot;post&quot; class=&quot;form-horizontal&quot;&gt;
                &lt;label&gt;&lt;h3&gt;Choose color&lt;/h3&gt;&lt;/label&gt;
                &lt;select name=&quot;colors&quot; class=&quot;form-control select2-select&quot; multiple data-placeholder=&quot;Choose 2-4 colors&quot;&gt;
                    &lt;option value=&quot;black&quot;&gt;Black&lt;/option&gt;
                    &lt;option value=&quot;blue&quot;&gt;Blue&lt;/option&gt;
                    &lt;option value=&quot;green&quot;&gt;Green&lt;/option&gt;
                    &lt;option value=&quot;orange&quot;&gt;Orange&lt;/option&gt;
                    &lt;option value=&quot;red&quot;&gt;Red&lt;/option&gt;
                    &lt;option value=&quot;yellow&quot;&gt;Yellow&lt;/option&gt;
                    &lt;option value=&quot;white&quot;&gt;White&lt;/option&gt;
                &lt;/select&gt;
                &lt;div class=&quot;form-group mt-3&quot;&gt;
                    &lt;button type=&quot;submit&quot; class=&quot;btn btn-success&quot;&gt;Submit&lt;/button&gt;
                &lt;/div&gt;
            &lt;/form&gt;
        &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;/body&gt;

&lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js&quot;&gt;&lt;/script&gt;    
&lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/select2/3.5.0/select2.min.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;https://oss.maxcdn.com/jquery.bootstrapvalidator/0.5.2/js/bootstrapValidator.min.js&quot;&gt;&lt;/script&gt;

&lt;script&gt;
$(document).ready(function() {
    $('#select2Form')
        .find('&#x5B;name=&quot;colors&quot;]')
            .select2()
            // Revalidate the color when it is changed
            .change(function(e) {
                $('#select2Form').bootstrapValidator('revalidateField', 'colors');
            })
            .end()
        .find('&#x5B;name=&quot;colors-tags&quot;]')
            .select2({
                // Specify tags
                tags: &#x5B;'Black', 'Blue', 'Green', 'Orange', 'Red', 'Yellow', 'White']
            })
            // Revalidate the color when it is changed
            .change(function(e) {
                $('#select2Form').bootstrapValidator('revalidateField', 'colors-tags');
            })
            .end()
        .bootstrapValidator({
            excluded: ':disabled',
            feedbackIcons: {
                valid: 'glyphicon glyphicon-ok',
                invalid: 'glyphicon glyphicon-remove',
                validating: 'glyphicon glyphicon-refresh'
            },
            fields: {
                colors: {
                    validators: {
                        callback: {
                            message: 'Please choose 2-4 color you like most',
                            callback: function(value, validator) {
                                // Get the selected options
                                var options = validator.getFieldElements('colors').val();
                                return (options != null &amp;&amp; options.length &gt;= 2 &amp;&amp; options.length &lt;= 4);
                            }
                        }
                    }
                },
                'colors-tags': {
                    validators: {
                        callback: {
                            message: 'Please choose 2-4 color you like most',
                            callback: function(value, validator) {
                                // Get the selected options
                                var options  = validator.getFieldElements('colors-tags').val(),
                                    options2 = options.split(',');

                                return (options2 !== null &amp;&amp; options2.length &gt;= 2 &amp;&amp; options2.length &lt;= 4);
                            }
                        }
                    }
                }
            }
        });
});
&lt;/script&gt;
&lt;/html&gt;
</pre>
<p>The post <a rel="nofollow" href="https://codeplaners.com/bootstrap-4-select-dropdown-with-validation-example/">Bootstrap 4 Select DropDown With Validation Example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/bootstrap-4-select-dropdown-with-validation-example/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Add Google Translate in Website</title>
		<link>https://codeplaners.com/how-to-add-google-translate-in-website/</link>
					<comments>https://codeplaners.com/how-to-add-google-translate-in-website/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sun, 30 May 2021 08:30:16 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Source Code]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=925</guid>

					<description><![CDATA[<p>Hi, Today, i we will show you how to add google translate in website. This article will give you simple example of how to add google translate in website. you will learn how to add google translate in website. So let&#8217;s follow few step to create example of how to add google translate in website. &#8230; <a href="https://codeplaners.com/how-to-add-google-translate-in-website/" class="more-link">Continue reading<span class="screen-reader-text"> "How To Add Google Translate in Website"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-add-google-translate-in-website/">How To Add Google Translate in Website</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi,</p>
<p>Today, i we will show you how to add google translate in website. This article will give you simple example of how to add google translate in website. you will learn how to add google translate in website. So let&#8217;s follow few step to create example of how to add google translate in website.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;div id=&quot;google_translate_element&quot;&gt;&lt;/div&gt;
&lt;script&gt;
	function googleTranslateElementInit() {
	new google.translate.TranslateElement({
	pageLanguage: 'en'
	}, 'google_translate_element');
	}
	jQuery(document).parent.jQuery(&quot;.goog-te-banner-frame&quot;).hide(&quot;show&quot;);
&lt;/script&gt;
&lt;script src=&quot;http://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit&quot;&gt;&lt;/script&gt;
</pre>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-add-google-translate-in-website/">How To Add Google Translate in Website</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/how-to-add-google-translate-in-website/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Disable Ctrl+U In Javascript</title>
		<link>https://codeplaners.com/disable-ctrlu-in-javascript/</link>
					<comments>https://codeplaners.com/disable-ctrlu-in-javascript/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 22 May 2021 06:53:35 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Source Code]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=819</guid>

					<description><![CDATA[<p>Hi, Today, i we will show you disable Ctrl+U in javascript. This article will give you simple example of disable Ctrl+U in javascript. you will learn disable Ctrl+U in javascript. So let&#8217;s follow few step to create example of disable Ctrl+U in javascript. Example &#60;!DOCTYPE html&#62; &#60;html&#62; &#60;head&#62; &#60;title&#62;Disable Ctrl+U In Javascript&#60;/title&#62; &#60;/head&#62; &#60;body&#62; &#60;h1&#62;Disable &#8230; <a href="https://codeplaners.com/disable-ctrlu-in-javascript/" class="more-link">Continue reading<span class="screen-reader-text"> "Disable Ctrl+U In Javascript"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/disable-ctrlu-in-javascript/">Disable Ctrl+U In Javascript</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi,</p>
<p>Today, i we will show you disable Ctrl+U in javascript. This article will give you simple example of disable Ctrl+U in javascript. you will learn disable Ctrl+U in javascript. So let&#8217;s follow few step to create example of disable Ctrl+U in javascript.</p>
<p><strong>Example</strong></p>
<pre class="brush: xml; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
  &lt;title&gt;Disable Ctrl+U In Javascript&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
    
&lt;h1&gt;Disable Ctrl+U In Javascript&lt;/h1&gt;


&lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; &gt; $(function () { $(this).bind(&quot;contextmenu&quot;, function (e) { e.preventDefault(); }); }); &lt;/script&gt;
&lt;script&gt;
	document.onkeydown = function(e) {
	if (e.ctrlKey &amp;&amp;
		(e.keyCode === 85 )) {
		return false;
	}
};
&lt;/script&gt;
    
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>The post <a rel="nofollow" href="https://codeplaners.com/disable-ctrlu-in-javascript/">Disable Ctrl+U In Javascript</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/disable-ctrlu-in-javascript/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Datepicker Disable Saturday Sunday in Bootstrap</title>
		<link>https://codeplaners.com/datepicker-disable-saturday-sunday-in-bootstrap/</link>
					<comments>https://codeplaners.com/datepicker-disable-saturday-sunday-in-bootstrap/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 18 May 2021 23:47:30 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[bootstrap 4]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=756</guid>

					<description><![CDATA[<p>Hi, Today, i we will show you datepicker disable saturday sunday in bootstrap. This article will give you simple example of datepicker disable saturday sunday in bootstrap. you will learn datepicker disable saturday sunday in bootstrap. So let&#8217;s follow few step to create example of datepicker disable saturday sunday in bootstrap. &#60;!DOCTYPE html&#62; &#60;html&#62; &#60;head&#62; &#8230; <a href="https://codeplaners.com/datepicker-disable-saturday-sunday-in-bootstrap/" class="more-link">Continue reading<span class="screen-reader-text"> "Datepicker Disable Saturday Sunday in Bootstrap"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/datepicker-disable-saturday-sunday-in-bootstrap/">Datepicker Disable Saturday Sunday in Bootstrap</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi,</p>
<p>Today, i we will show you datepicker disable saturday sunday in bootstrap. This article will give you simple example of datepicker disable saturday sunday in bootstrap. you will learn datepicker disable saturday sunday in bootstrap. So let&#8217;s follow few step to create example of datepicker disable saturday sunday in bootstrap.</p>
<p><img decoding="async" style="border: 2px solid #ff5722;" src="https://codeplaners.com/wp-content/uploads/2021/05/datepicker.png" alt="Datepicker Disable Saturday Sunday in Bootstrap"></p>
<pre class="brush: xml; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;title&gt;Datepicker Disable Saturday Sunday in Bootstrap - codeplaners.com&lt;/title&gt;
    &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/css/bootstrap.css&quot;&gt;
    &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/css/bootstrap-datepicker.css&quot;&gt;
    &lt;script src = &quot;https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js&quot;&gt;&lt;/script&gt;
    &lt;script type=&quot;text/javascript&quot; src=&quot;https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/js/bootstrap-datepicker.js&quot;&gt;&lt;/script&gt;
    &lt;script src=&quot;https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
   
&lt;div class=&quot;container&quot;&gt;
    &lt;h1&gt;Datepicker Disable Saturday Sunday in Bootstrap&lt;/h1&gt;
    &lt;input type=&quot;text&quot; name=&quot;date&quot; class=&quot;form-control datepicker&quot; autocomplete=&quot;off&quot;&gt;
&lt;/div&gt;
  
&lt;/body&gt;
   
&lt;script type=&quot;text/javascript&quot;&gt;
    $('.datepicker').datepicker({
        daysOfWeekDisabled: &#x5B;0,6]
    });
&lt;/script&gt;
&lt;/html&gt;
</pre>
<p>The post <a rel="nofollow" href="https://codeplaners.com/datepicker-disable-saturday-sunday-in-bootstrap/">Datepicker Disable Saturday Sunday in Bootstrap</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/datepicker-disable-saturday-sunday-in-bootstrap/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
