<?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 4 Archives - Codeplaners</title>
	<atom:link href="https://codeplaners.com/tag/bootstrap-4/feed/" rel="self" type="application/rss+xml" />
	<link>https://codeplaners.com/tag/bootstrap-4/</link>
	<description>Code Solution</description>
	<lastBuildDate>Fri, 09 Jul 2021 05:50:41 +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 4 Archives - Codeplaners</title>
	<link>https://codeplaners.com/tag/bootstrap-4/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<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</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>Bootstrap drag and drop using jquery UI sortable</title>
		<link>https://codeplaners.com/bootstrap-drag-and-drop-using-jquery-ui-sortable/</link>
					<comments>https://codeplaners.com/bootstrap-drag-and-drop-using-jquery-ui-sortable/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 23 Jun 2021 00:17:59 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Jquery Ui]]></category>
		<category><![CDATA[bootstrap 4]]></category>
		<category><![CDATA[Bootstrap 5]]></category>
		<category><![CDATA[drag and drop]]></category>
		<category><![CDATA[Source Code]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1018</guid>

					<description><![CDATA[<p>Hi Dev, Today, i we will show you Bootstrap drag and drop using jquery UI sortable. This article will give you simple example of Bootstrap drag and drop using jquery UI sortable. you will learn Bootstrap drag and drop using jquery UI sortable. So let&#8217;s follow few step to create example of Bootstrap drag and &#8230; <a href="https://codeplaners.com/bootstrap-drag-and-drop-using-jquery-ui-sortable/" class="more-link">Continue reading<span class="screen-reader-text"> "Bootstrap drag and drop using jquery UI sortable"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/bootstrap-drag-and-drop-using-jquery-ui-sortable/">Bootstrap drag and drop using jquery UI sortable</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 drag and drop using jquery UI sortable. This article will give you simple example of Bootstrap drag and drop using jquery UI sortable. you will learn Bootstrap drag and drop using jquery UI sortable. So let&#8217;s follow few step to create example of Bootstrap drag and drop using jquery UI sortable.</p>
<p>Preview:<br />
<img decoding="async" style="border: 3px solid #ff5722;" alt="Bootstrap drag and drop using jquery UI sortable"  src="https://codeplaners.com/wp-content/uploads/2021/06/darg-and-drop.png"></p>
<p><strong>Example</strong></p>
<pre class="brush: xml; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;title&gt;Bootstrap Sort list by drag and drop using jquery UI sortable - Codeplaners.com&lt;/title&gt;
&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1&quot;&gt;
&lt;link href=&quot;https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css&quot; rel=&quot;stylesheet&quot;&gt;
&lt;script src=&quot;https://stackpath.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;https://code.jquery.com/jquery-1.12.4.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;https://code.jquery.com/ui/1.12.1/jquery-ui.js&quot;&gt;&lt;/script&gt;
&lt;script&gt;
    $(function() {
        $(&quot;#sortable&quot;).sortable();
        $(&quot;#sortable&quot;).disableSelection();
    });
&lt;/script&gt;

&lt;body&gt;

&lt;div class=&quot;page-content page-container&quot; id=&quot;page-content&quot;&gt;
    &lt;div class=&quot;container&quot;&gt;
        &lt;div class=&quot;row&quot;&gt;
            &lt;div class=&quot;col-sm-12&quot;&gt;
                &lt;div class=&quot;container-fluid d-flex justify-content-center&quot;&gt;
                    &lt;div class=&quot;list list-row card&quot; id=&quot;sortable&quot; data-sortable-id=&quot;0&quot; aria-dropeffect=&quot;move&quot;&gt;
                        &lt;div class=&quot;list-item&quot; data-id=&quot;13&quot; data-item-sortable-id=&quot;0&quot; draggable=&quot;true&quot; role=&quot;option&quot; aria-grabbed=&quot;false&quot; style=&quot;&quot;&gt;
                            &lt;div&gt;&lt;a href=&quot;#&quot; data-abc=&quot;true&quot;&gt;&lt;span class=&quot;w-40 avatar gd-primary&quot;&gt;C&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
                            &lt;div class=&quot;flex&quot;&gt; &lt;a href=&quot;#&quot; class=&quot;item-author text-color&quot; data-abc=&quot;true&quot;&gt;Patrick Linod&lt;/a&gt;
                                &lt;div class=&quot;item-except text-muted text-sm h-1x&quot;&gt;For what reason would it be advisable for me to think about business content?&lt;/div&gt;
                            &lt;/div&gt;
                            &lt;div class=&quot;no-wrap&quot;&gt;
                                &lt;div class=&quot;item-date text-muted text-sm d-none d-md-block&quot;&gt;1 weeks ago&lt;/div&gt;
                            &lt;/div&gt;
                        &lt;/div&gt;
                        &lt;div class=&quot;list-item&quot; data-id=&quot;9&quot; data-item-sortable-id=&quot;0&quot; draggable=&quot;true&quot; role=&quot;option&quot; aria-grabbed=&quot;false&quot;&gt;
                            &lt;div&gt;&lt;a href=&quot;#&quot; data-abc=&quot;true&quot;&gt;&lt;span class=&quot;w-40 avatar gd-info&quot;&gt;&lt;img src=&quot;https://codeplaners.com/wp-content/uploads/2020/09/cropped-favicon-social-192x192.png&quot; alt=&quot;.&quot;&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
                            &lt;div class=&quot;flex&quot;&gt; &lt;a href=&quot;#&quot; class=&quot;item-author text-color&quot; data-abc=&quot;true&quot;&gt;Steven Hmpire&lt;/a&gt;
                                &lt;div class=&quot;item-except text-muted text-sm h-1x&quot;&gt;Build a progressive web app using jQuery&lt;/div&gt;
                            &lt;/div&gt;
                            &lt;div class=&quot;no-wrap&quot;&gt;
                                &lt;div class=&quot;item-date text-muted text-sm d-none d-md-block&quot;&gt;10 days ago&lt;/div&gt;
                            &lt;/div&gt;
                        &lt;/div&gt;
                        &lt;div class=&quot;list-item&quot; data-id=&quot;17&quot; data-item-sortable-id=&quot;0&quot; draggable=&quot;true&quot; role=&quot;option&quot; aria-grabbed=&quot;false&quot; style=&quot;&quot;&gt;
                            &lt;div&gt;&lt;a href=&quot;#&quot; data-abc=&quot;true&quot;&gt;&lt;span class=&quot;w-40 avatar gd-warning&quot;&gt;M&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
                            &lt;div class=&quot;flex&quot;&gt; &lt;a href=&quot;#&quot; class=&quot;item-author text-color&quot; data-abc=&quot;true&quot;&gt;Alan musk&lt;/a&gt;
                                &lt;div class=&quot;item-except text-muted text-sm h-1x&quot;&gt;it be advisable for me to think about business content?&lt;/div&gt;
                            &lt;/div&gt;
                            &lt;div class=&quot;no-wrap&quot;&gt;
                                &lt;div class=&quot;item-date text-muted text-sm d-none d-md-block&quot;&gt;13/12 18&lt;/div&gt;
                            &lt;/div&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;style&gt;
body {
     background-color: #f9f9fa
}
.card {
     background: #faf7f7;
     border-width: 0;
     border-radius: .25rem;
     box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
     margin-bottom: 1.5rem;
	 margin: 50px 0 0;
     position: relative;
     display: flex;
     flex-direction: column;
     min-width: 0;
     word-wrap: break-word;
     background-clip: border-box;
     border: 1px solid rgba(19, 24, 44, .125);
     border-radius: .25rem
}
.list-item.block .media {
 border-bottom-left-radius: 0;
 border-bottom-right-radius: 0
}
.list-item.block .list-content {
 padding: 1rem
}

.w-40 {
 width: 40px !important;
 height: 40px !important
}
.avatar {
	 position: relative;
	 line-height: 1;
	 border-radius: 500px;
	 white-space: nowrap;
	 font-weight: 700;
	 border-radius: 100%;
	 display: -ms-flexbox;
	 display: flex;
	 -ms-flex-pack: center;
	 justify-content: center;
	 -ms-flex-align: center;
	 align-items: center;
	 -ms-flex-negative: 0;
	 flex-shrink: 0;
	 border-radius: 500px;
	 box-shadow: 0 5px 10px 0 rgba(50, 50, 50, .15)
}

.avatar img {
	 border-radius: inherit;
	 width: 100%
}
.gd-primary {
	 color: #fff;
	 border: none;
	 background: #448bff linear-gradient(45deg, #448bff, #44e9ff)
}
.flex {
	 -webkit-box-flex: 1;
	 -ms-flex: 1 1 auto;
	 flex: 1 1 auto
}
.text-color {
 	color: #5e676f
}

.text-sm {
 	font-size: .825rem
}
.h-1x {
	 height: 1.25rem;
	 overflow: hidden;
	 display: -webkit-box;
	 -webkit-line-clamp: 1;
	 -webkit-box-orient: vertical
}

.no-wrap {
 	white-space: nowrap
}

.list-row .list-item {
	 -ms-flex-direction: row;
	 flex-direction: row;
	 -ms-flex-align: center;
	 align-items: center;
	 padding: .75rem .625rem
}

.list-item {
	 position: relative;
	 display: -ms-flexbox;
	 display: flex;
	 -ms-flex-direction: column;
	 flex-direction: column;
	 min-width: 0;
	 word-wrap: break-word
}
.list-row .list-item&gt;* {
 padding-left: .625rem;
 padding-right: .625rem
}
a:focus,
a:hover {
 text-decoration: none
}
list-item {
 background: white
}
&lt;/style&gt;


&lt;/body&gt;
&lt;/html&gt;

</pre>
<p>The post <a rel="nofollow" href="https://codeplaners.com/bootstrap-drag-and-drop-using-jquery-ui-sortable/">Bootstrap drag and drop using jquery UI sortable</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/bootstrap-drag-and-drop-using-jquery-ui-sortable/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>
		<item>
		<title>How to scroll back to top in bootstrap</title>
		<link>https://codeplaners.com/how-to-scroll-back-to-top-in-bootstrap/</link>
					<comments>https://codeplaners.com/how-to-scroll-back-to-top-in-bootstrap/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Mon, 19 Apr 2021 09:33:44 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[bootstrap 4]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=591</guid>

					<description><![CDATA[<p>In this article, we will show you How to scroll back to top in bootstrap. This article will give you simple example of How to scroll back to top in bootstrap. you will learn How to scroll back to top in bootstrap. &#60;!DOCTYPE html&#62; &#60;html&#62; &#60;head&#62; &#60;title&#62;How to scroll back to top in bootstrap&#60;/title&#62; &#60;link &#8230; <a href="https://codeplaners.com/how-to-scroll-back-to-top-in-bootstrap/" class="more-link">Continue reading<span class="screen-reader-text"> "How to scroll back to top in bootstrap"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-scroll-back-to-top-in-bootstrap/">How to scroll back to top in bootstrap</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>In this article, we will show you How to scroll back to top in bootstrap. This article will give you simple example of How to scroll back to top in bootstrap. you will learn How to scroll back to top in bootstrap.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;title&gt;How to scroll back to top in bootstrap&lt;/title&gt;

    
    &lt;link href=&quot;https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css&quot; rel=&quot;stylesheet&quot;&gt;
    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://use.fontawesome.com/releases/v5.2.0/css/all.css&quot;&gt;
    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js&quot;&gt;&lt;/script&gt;
    &lt;script src=&quot;https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;

&lt;style&gt;
.back_to_top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: none;
}
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;

&lt;a id=&quot;back-to-top&quot; href=&quot;#&quot; class=&quot;btn btn-light btn-lg back_to_top&quot; role=&quot;button&quot;&gt;&lt;i class=&quot;fas fa-chevron-up&quot;&gt;&lt;/i&gt;&lt;/a&gt;
&lt;script&gt;
$(document).ready(function(){
	$(window).scroll(function () {
			if ($(this).scrollTop() &gt; 50) {
				$('#back-to-top').fadeIn();
			} else {
				$('#back-to-top').fadeOut();
			}
		});
		// scroll body to 0px on click
		$('#back-to-top').click(function () {
			$('body,html').animate({
				scrollTop: 0
			}, 400);
			return false;
		});
});
&lt;/script&gt;


&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-scroll-back-to-top-in-bootstrap/">How to scroll back to top 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-scroll-back-to-top-in-bootstrap/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to create react bootstrap slider</title>
		<link>https://codeplaners.com/how-to-create-react-bootstrap-slider/</link>
					<comments>https://codeplaners.com/how-to-create-react-bootstrap-slider/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 21 Oct 2020 07:00:36 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[Reacts]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[bootstrap 4]]></category>
		<category><![CDATA[bootstrap slider]]></category>
		<category><![CDATA[component]]></category>
		<category><![CDATA[react js slider]]></category>
		<category><![CDATA[react-component]]></category>
		<category><![CDATA[slider]]></category>
		<guid isPermaLink="false">http://localhost/codeplaners/?p=313</guid>

					<description><![CDATA[<p>Interoduction The Build React App was used to bootstrap this project. It was then ejected because of a problem with jQuery (see below). A ReactJS wrapper with Bootstrap for the Seiyria Bootstrap Slider part. Start with version 3.0.0, we only support Bootstrap 4. If you are still using Bootstrap 3, please use version 2.2.3. How &#8230; <a href="https://codeplaners.com/how-to-create-react-bootstrap-slider/" class="more-link">Continue reading<span class="screen-reader-text"> "How to create react bootstrap slider"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-create-react-bootstrap-slider/">How to create react bootstrap slider</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong>Interoduction</strong></p>
<p>The Build React App was used to bootstrap this project. It was then ejected because of a problem with jQuery (see below).</p>
<p>A ReactJS wrapper with Bootstrap for the Seiyria Bootstrap Slider part. Start with version 3.0.0, we only support Bootstrap 4. If you are still using Bootstrap 3, please use version 2.2.3.</p>
<p><strong>How to install</strong></p>
<p>Install from npm with:</p>
<pre><code>npm install --save react-bootstrap-slider
</code></pre>
<p>or</p>
<pre><code>yarn add react-bootstrap-slider</code></pre>
<p><strong>Import like so for ES6:</strong></p>
<pre><code>import ReactBootstrapSlider from 'react-bootstrap-slider';
</code></pre>
<p>The control is implemented in the UMD format, so AMD / RequireJS should also function, but I haven&#8217;t checked it.</p>
<p><strong>Peer Dependencies</strong></p>
<p>For react-bootstrap-slider, React, React Dom, and Bootstrap are classified as peer dependencies (peerDependencies section of package.json). When you install this component in your own project, it won&#8217;t be automatically installed. If you have not already done so, you will need to install them yourself, as part of that project. If you do not include them yet, this command will install them for you:</p>
<pre><code>npm install react react-dom prop-types bootstrap@^4 --save
</code></pre>
<p>or</p>
<pre><code>yarn add react react-dom prop-types bootstrap@^4</code></pre>
<p><strong>jQuery</strong></p>
<p>If it detects it in your project configuration, the bootstrap-slider part-and thus, react-bootstrap-slider-will work with jQuery, but it isn&#8217;t a necessity. Without jQuery, it worked great. However, if you are using Webpack or Browserify to create your project, if jQuery is not present, you can get a &#8220;missing dependency&#8221; create error. This is a known upstream bootstrap-slider problem. See How do I remove the JQuery optional dependency from my build? Readme f on the Bootstrap Slider&#8217;s on the Bootstrap Slider on how this problem can be worked around. By reviewing the /examples / config / webpack.config.js file and searching for &#8216;jQuery, you can also see how I did it.</p>
<p>You also need to make sure you have included the CSS file of the bootstrap-slider in your build, otherwise the control will be null! Of course, you&#8217;ll also need Bootstrap&#8217;s own CSS file as well. If you are using Webpack, which you would be if you have a project based on Create React App, then you can directly import the CSS file into your build, like this:</p>
<pre class="prettyprint prettyprinted" data-spm-anchor-id="a2c6h.14275010.0.i10.22924ce7kb68Zr"><code class="language-JavaScript"><span class="kwd">import</span> <span class="str">"bootstrap/dist/css/bootstrap.css"</span><span class="pun">;</span>
<span class="kwd">import</span> <span class="str">"bootstrap-slider/dist/css/bootstrap-slider.css"</span></code></pre>
<p>Those two imports need to be in your top-level JavaScript file, e.g. App.js.</p>
<p>Or you can simply add the files as links in your HTML file as a link e.g.:</p>
<pre class="prettyprint prettyprinted"><code class="language-HTML"><span class="tag">&lt;link</span> <span class="atn">rel</span><span class="pun">=</span><span class="atv">"stylesheet"</span> <span class="atn">href</span><span class="pun">=</span><span class="atv">"//stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"</span> <span class="tag">/&gt;</span>
    <span class="tag">&lt;script</span> <span class="atn">src</span><span class="pun">=</span><span class="atv">"//cdnjs.cloudflare.com/ajax/libs/bootstrap-slider/11.0.2/bootstrap-slider.min.js"</span><span class="tag">&gt;&lt;/script&gt;</span></code></pre>
<p data-spm-anchor-id="a2c6h.14275010.0.i11.22924ce7kb68Zr">Checking that the versions match those of Bootstrap and Bootstrap Slider themselves.</p>
<p data-spm-anchor-id="a2c6h.14275010.0.i12.22924ce7kb68Zr"><strong>How to create react-bootstrap-slider</strong></p>
<p>Here&#8217;s an example of how you might call it in your ReactJS&#8217;s render method:</p>
<pre class="prettyprint prettyprinted"><code class="language-JavaScript"><span class="tag">&lt;ReactBootstrapSlider</span>
    <span class="atn">value</span><span class="pun">=</span><span class="atv">{this.state.currentValue}</span>
    <span class="atn">change</span><span class="pun">=</span><span class="atv">{this.changeValue}</span>
    <span class="atn">slideStop</span><span class="pun">=</span><span class="atv">{this.changeValue}</span>
    <span class="atn">step</span><span class="pun">=</span><span class="atv">{this.state.step}</span>
    <span class="atn">max</span><span class="pun">=</span><span class="atv">{this.state.max}</span>
    <span class="atn">min</span><span class="pun">=</span><span class="atv">{this.state.min}</span>
    <span class="atn">orientation</span><span class="pun">=</span><span class="atv">"vertical"</span>
    <span class="atn">reversed</span><span class="pun">=</span><span class="atv">{true}</span>
    <span class="atn">disabled</span><span class="pun">=</span><span class="atv">"disabled"</span> <span class="tag">/&gt;</span></code></pre>
<p data-spm-anchor-id="a2c6h.14275010.0.i13.22924ce7kb68Zr">The <strong>value</strong>, <strong>step</strong>, <strong>max,</strong> and <strong>min</strong> parameters should be self-explanatory. The <code>change</code> event is the callback method that will be called when the slider actually changes. (NB: this is the <code>change</code> event for the Bootstrap slider.) As of version 1.1.2, there is a new <code>slideStop</code> event, which only triggers when you&#8217;ve <em>finished</em> moving the slider (i.e. you release it). This makes <code>slideStop</code> a deal less &#8220;chatty&#8221; than the <code>change</code> event. Decide which one you need; you&#8217;ll only ever need one or the other (unlike my example code above!).</p>
<p>If the optional parameter <strong>disabled</strong> is included, and is set to &#8220;disabled&#8221;, then the slider will display in a disabled state. If the parameter is not included, or is set to anything else except &#8220;disabled&#8221;, then the slider control will be enabled.</p>
<p>The default <strong>orientation</strong> value is &#8216;horizontal&#8217;, so you only need to include that prop if you want to set it to &#8216;vertical&#8217;.</p>
<p>If <strong>value</strong> is a two member array, then the slider will have two handles: minimum and maximum. You should also pass win a <strong>range</strong> parameter set to true in this case.</p>
<p>As of version 1.0.5, other values passed into the component will also passed into the underlying bootstrap-slider component via the Object Spread Operator that&#8217;s been proposed for ES2017 (yes, that&#8217;s how cutting edge I am!!). See <a href="https://github.com/seiyria/bootstrap-slider">seyria&#8217;s documentation</a> for a full list of these. Those parameters have not all been tested yet but the <code>reversed</code> parameter definitely works, and I have included this in the demo of the vertical slider.</p>
<p>Version 1.0.6 fixed an issue that prevented ticks props from being rendered. Pass in ticks props like so:</p>
<pre class="prettyprint prettyprinted"><code class="language-JavaScript"><span class="pln">ticks </span><span class="pun">=</span> <span class="pun">{[</span><span class="lit">0</span><span class="pun">,</span> <span class="lit">100</span><span class="pun">,</span> <span class="lit">200</span><span class="pun">,</span> <span class="lit">300</span><span class="pun">,</span> <span class="lit">400</span><span class="pun">]}</span><span class="pln">
ticks_labels </span><span class="pun">=</span> <span class="pun">{[</span><span class="str">"$0"</span><span class="pun">,</span> <span class="str">"$100"</span><span class="pun">,</span> <span class="str">"$200"</span><span class="pun">,</span> <span class="str">"$300"</span><span class="pun">,</span> <span class="str">"$400"</span><span class="pun">]}</span><span class="pln">
ticks_snap_bounds </span><span class="pun">=</span> <span class="pun">{</span> <span class="lit">30</span> <span class="pun">}</span></code></pre>
<h2 data-spm-anchor-id="a2c6h.14275010.0.i15.22924ce7kb68Zr">Current Tags</h2>
<ul>
<li data-spm-anchor-id="a2c6h.14275010.0.i14.22924ce7kb68Zr">3.0.0                                &#8230;         <strong>  latest (4 months ago)</strong></li>
</ul>
<h2>28 Versions</h2>
<ul>
<li>3.0.0                                &#8230;           <strong>4 months ago</strong></li>
<li>2.2.3                                &#8230;           <strong>9 months ago</strong></li>
<li>2.2.2                                &#8230;           <strong>2 years ago</strong></li>
<li>2.2.1                                &#8230;           <strong>2 years ago</strong></li>
<li>2.2.0                                &#8230;         <strong>  2 years ago</strong></li>
<li>2.1.5                                &#8230;           <strong>2 years ago</strong></li>
<li>2.1.4                                &#8230;           <strong>3 years ago</strong></li>
<li>2.1.3                                &#8230;         <strong>  3 years ago</strong></li>
<li>2.1.2                                &#8230;           <strong>3 years ago</strong></li>
<li>2.1.1                                &#8230;          <strong> 3 years ago</strong></li>
<li>2.1.0                                &#8230;          <strong> 3 years ago</strong></li>
<li>2.0.1                                &#8230;          <strong> 3 years ago</strong></li>
<li>2.0.0                                &#8230;          <strong> 3 years ago</strong></li>
<li>1.1.7                                &#8230;           <strong>4 years ago</strong></li>
<li>1.1.6                                &#8230;          <strong> 4 years ago</strong></li>
<li>1.1.5                                &#8230;           <strong>4 years ago</strong></li>
<li>1.1.4                                &#8230;          <strong> 4 years ago</strong></li>
<li>1.1.3                                &#8230;          <strong> 4 years ago</strong></li>
<li>1.1.2                                &#8230;           <strong>4 years ago</strong></li>
<li>1.1.1                                &#8230;           <strong>4 years ago</strong></li>
<li>1.1.0                                &#8230;          <strong> 4 years ago</strong></li>
<li>1.0.6                                &#8230;           <strong>4 years ago</strong></li>
<li>1.0.5                                &#8230;           <strong>4 years ago</strong></li>
<li>1.0.4                                &#8230;          <strong> 4 years ago</strong></li>
<li>1.0.3                                &#8230;           <strong>4 years ago</strong></li>
<li>1.0.2                                &#8230;         <strong>  4 years ago</strong></li>
<li>1.0.1                                &#8230;           <strong>4 years ago</strong></li>
<li data-spm-anchor-id="a2c6h.14275010.0.i16.22924ce7kb68Zr">1.0.0                                &#8230;          <strong> 5 years ago</strong></li>
</ul>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-create-react-bootstrap-slider/">How to create react bootstrap slider</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/how-to-create-react-bootstrap-slider/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Install Bootstrap 4</title>
		<link>https://codeplaners.com/how-to-install-bootstrap-4/</link>
					<comments>https://codeplaners.com/how-to-install-bootstrap-4/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 03 Oct 2020 07:43:54 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[bootstrap 3]]></category>
		<category><![CDATA[bootstrap 4]]></category>
		<category><![CDATA[install bootstrap]]></category>
		<guid isPermaLink="false">http://localhost/codeplaners/?p=201</guid>

					<description><![CDATA[<p>This post was last updated on February 14th, 2021 at 04:25 pmBootstrap is most of the popular JS, CSS, and HTML framework that is used and develop mobile-first responsive websites. The popularity of this front-end framework has considerably increased over the last few years because it enables users to create highly-functional and good-looking websites with &#8230; <a href="https://codeplaners.com/how-to-install-bootstrap-4/" class="more-link">Continue reading<span class="screen-reader-text"> "How to Install Bootstrap 4"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-install-bootstrap-4/">How to Install Bootstrap 4</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p class="last-modified">This post was last updated on February 14th, 2021 at 04:25 pm</p><p>Bootstrap<span style="font-size: 16px; font-weight: 400;"> is most of the popular JS, CSS, and HTML framework that is used and develop mobile-first responsive websites. The popularity of this front-end framework has considerably increased over the last few years because it enables users to create highly-functional and good-looking websites with utmost ease. The ones with basic knowledge of CSS and HTML will be able to easily create professional websites by using the Bootstrap.</span></p>
<div class="single-page-content pb-5">
<p>An updated version of the Bootstrap framework, which is known as Bootstrap 4.2.1 was recently launched. The updated framework comes with a number of new features and bug fixes. You can learn more about the changes in the latest version of the Bootstrap 4 framework by checking out the <b>Bootstrap 3 Vs. Bootstrap 4 What’s new</b> article?</p>
<p><img decoding="async" loading="lazy" class="alignnone size-medium wp-image-202" src="http://localhost/codeplaners/wp-content/uploads/2020/10/boostrap_img-300x169.png" alt="" width="100%" height="400" srcset="https://codeplaners.com/wp-content/uploads/2020/10/boostrap_img-300x169.png 300w, https://codeplaners.com/wp-content/uploads/2020/10/boostrap_img-1024x576.png 1024w, https://codeplaners.com/wp-content/uploads/2020/10/boostrap_img-768x432.png 768w, https://codeplaners.com/wp-content/uploads/2020/10/boostrap_img-1536x864.png 1536w, https://codeplaners.com/wp-content/uploads/2020/10/boostrap_img-1200x675.png 1200w, https://codeplaners.com/wp-content/uploads/2020/10/boostrap_img.png 1920w" sizes="(max-width: 300px) 85vw, 300px" /></p>
<p>Unfortunately, several users who are new to the world of web designing and Bootstrap 4 framework have no clear idea on how to install this framework. If you are one such a user, then do not worry because we are here to help you.</p>
<p>Just like any other framework, there are plenty of methods available for installing the Bootstrap 4 framework too. Below are a few simple methods that will give you a clear idea on how to install Bootstrap 4 framework.</p>
<h2><b> Remember </b><b>Points</b></h2>
<p>We highly recommend you to pay a visit to the official website of Bootstrap before you start the installation process. This will enable you to learn more about the framework and give you a rough idea on how to install it. In fact, you will be able to see a Download and Get started button in the official Bootstrap website.</p>
<p><img decoding="async" loading="lazy" class="alignnone wp-image-5398 size-full" src="https://i0.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-download.png?resize=1351%2C661&amp;ssl=1" sizes="(max-width: 1000px) 100vw, 1000px" srcset="https://i0.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-download.png?w=1351&amp;ssl=1 1351w, https://i0.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-download.png?resize=300%2C147&amp;ssl=1 300w, https://i0.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-download.png?resize=768%2C376&amp;ssl=1 768w, https://i0.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-download.png?resize=1024%2C501&amp;ssl=1 1024w, https://i0.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-download.png?resize=360%2C176&amp;ssl=1 360w, https://i0.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-download.png?resize=510%2C250&amp;ssl=1 510w, https://i0.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-download.png?resize=247%2C121&amp;ssl=1 247w" alt="Bootstrap 4 beta homepage" width="1351" height="661" data-recalc-dims="1" /></p>
<p>If you click the download button, you will be redirected to another page where you can find multiple numbers of options to download the latest version of the Bootstrap framework.</p>
<p><img decoding="async" loading="lazy" class="alignnone wp-image-5402 size-full" src="https://i1.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-download-page.png?resize=1351%2C655&amp;ssl=1" sizes="(max-width: 1000px) 100vw, 1000px" srcset="https://i1.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-download-page.png?w=1351&amp;ssl=1 1351w, https://i1.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-download-page.png?resize=300%2C145&amp;ssl=1 300w, https://i1.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-download-page.png?resize=768%2C372&amp;ssl=1 768w, https://i1.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-download-page.png?resize=1024%2C496&amp;ssl=1 1024w, https://i1.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-download-page.png?resize=360%2C175&amp;ssl=1 360w, https://i1.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-download-page.png?resize=510%2C247&amp;ssl=1 510w, https://i1.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-download-page.png?resize=247%2C120&amp;ssl=1 247w" alt="Bootstrap 4 beta download page" width="1351" height="655" data-recalc-dims="1" /></p>
<h2>Standard Download</h2>
<p>Most users prefer to use the Standard download method when it comes to Bootstrap framework installation. This is a pretty simple method where you can easily download combined and minified JavaScript plugins and CSS bundles that can be later used for your web designing project.</p>
<p><img decoding="async" loading="lazy" class="alignnone wp-image-5397 size-full" src="https://i1.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-download.png?resize=1349%2C649&amp;ssl=1" sizes="(max-width: 1000px) 100vw, 1000px" srcset="https://i1.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-download.png?w=1349&amp;ssl=1 1349w, https://i1.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-download.png?resize=300%2C144&amp;ssl=1 300w, https://i1.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-download.png?resize=768%2C369&amp;ssl=1 768w, https://i1.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-download.png?resize=1024%2C493&amp;ssl=1 1024w, https://i1.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-download.png?resize=360%2C173&amp;ssl=1 360w, https://i1.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-download.png?resize=510%2C245&amp;ssl=1 510w, https://i1.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-download.png?resize=247%2C119&amp;ssl=1 247w" alt="Bootstrap 4 beta compiled download" width="1349" height="649" data-recalc-dims="1" /></p>
<p>Bootstrap files will automatically start downloading once you click on the Download button. Once the downloading is finished, you will receive a zip folder that contains compiled and minified versions of the JavaScript plugins and CSS bundles. You will need to extract the zip folder if you wish to make use of these files in your next project.</p>
<p><img decoding="async" loading="lazy" class="alignnone wp-image-5395 size-full" src="https://i2.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-dist-folder.png?resize=1366%2C727&amp;ssl=1" sizes="(max-width: 1000px) 100vw, 1000px" srcset="https://i2.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-dist-folder.png?w=1366&amp;ssl=1 1366w, https://i2.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-dist-folder.png?resize=300%2C160&amp;ssl=1 300w, https://i2.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-dist-folder.png?resize=768%2C409&amp;ssl=1 768w, https://i2.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-dist-folder.png?resize=1024%2C545&amp;ssl=1 1024w, https://i2.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-dist-folder.png?resize=360%2C192&amp;ssl=1 360w, https://i2.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-dist-folder.png?resize=510%2C271&amp;ssl=1 510w, https://i2.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-dist-folder.png?resize=247%2C131&amp;ssl=1 247w" alt="Bootstrap 4 beta compiled dist folder" width="1366" height="727" data-recalc-dims="1" /></p>
<p>You will be able to see the following files once you extract the CSS folder.</p>
<p><img decoding="async" loading="lazy" class="alignnone wp-image-5394 size-full" src="https://i1.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-dist-css.png?resize=1366%2C728&amp;ssl=1" sizes="(max-width: 1000px) 100vw, 1000px" srcset="https://i1.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-dist-css.png?w=1366&amp;ssl=1 1366w, https://i1.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-dist-css.png?resize=300%2C160&amp;ssl=1 300w, https://i1.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-dist-css.png?resize=768%2C409&amp;ssl=1 768w, https://i1.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-dist-css.png?resize=1024%2C546&amp;ssl=1 1024w, https://i1.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-dist-css.png?resize=360%2C192&amp;ssl=1 360w, https://i1.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-dist-css.png?resize=510%2C272&amp;ssl=1 510w, https://i1.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-dist-css.png?resize=247%2C132&amp;ssl=1 247w" alt="Bootstrap 4 beta compiled css folder" width="1366" height="728" data-recalc-dims="1" /></p>
<p>The files that are available in the JS folder are as follows.</p>
<p><img decoding="async" loading="lazy" class="alignnone wp-image-5396 size-full" src="https://i0.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-dist-js.png?resize=1366%2C727&amp;ssl=1" sizes="(max-width: 1000px) 100vw, 1000px" srcset="https://i0.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-dist-js.png?w=1366&amp;ssl=1 1366w, https://i0.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-dist-js.png?resize=300%2C160&amp;ssl=1 300w, https://i0.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-dist-js.png?resize=768%2C409&amp;ssl=1 768w, https://i0.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-dist-js.png?resize=1024%2C545&amp;ssl=1 1024w, https://i0.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-dist-js.png?resize=360%2C192&amp;ssl=1 360w, https://i0.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-dist-js.png?resize=510%2C271&amp;ssl=1 510w, https://i0.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-compiled-dist-js.png?resize=247%2C131&amp;ssl=1 247w" alt="Bootstrap 4 beta compiled JS folder" width="1366" height="727" data-recalc-dims="1" /></p>
<p>If you are wondering what the file structure for the precompiled Bootstrap folder really looks like, then check out the following image.</p>
<pre><code class="language-plaintext">bootstrap/
├── css/
│   ├── bootstrap.css
│   ├── bootstrap.css.map
│   ├── bootstrap.min.css
│   └── bootstrap.min.css.map
└── js/
    ├── bootstrap.js
    └── bootstrap.min.js</code></pre>
<h2>Source Files</h2>
<p>Users who download the source files from the official website of the Bootstrap framework will be able to use <a href="https://www.w3schools.com/js/" target="_blank" rel="noopener noreferrer" data-wpel-link="exclude">JavaScript</a>, source Sass, and documentation files for future projects. Source files will also be downloaded as a zip folder, which means that you will need to extract it to get the contents included in it.</p>
<p><img decoding="async" loading="lazy" class="alignnone wp-image-5399 size-full" src="https://i0.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-source-download.png?resize=1348%2C656&amp;ssl=1" sizes="(max-width: 1000px) 100vw, 1000px" srcset="https://i0.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-source-download.png?w=1348&amp;ssl=1 1348w, https://i0.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-source-download.png?resize=300%2C146&amp;ssl=1 300w, https://i0.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-source-download.png?resize=768%2C374&amp;ssl=1 768w, https://i0.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-source-download.png?resize=1024%2C498&amp;ssl=1 1024w, https://i0.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-source-download.png?resize=360%2C175&amp;ssl=1 360w, https://i0.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-source-download.png?resize=510%2C248&amp;ssl=1 510w, https://i0.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-source-download.png?resize=247%2C120&amp;ssl=1 247w" alt="Bootstrap 4 beta source download" width="1348" height="656" data-recalc-dims="1" /></p>
<p>Once you open the source file, you will be able to see the following folders.</p>
<p><img decoding="async" loading="lazy" class="alignnone wp-image-5400 size-full" src="https://i2.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-source-files.png?resize=1366%2C727&amp;ssl=1" sizes="(max-width: 1000px) 100vw, 1000px" srcset="https://i2.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-source-files.png?w=1366&amp;ssl=1 1366w, https://i2.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-source-files.png?resize=300%2C160&amp;ssl=1 300w, https://i2.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-source-files.png?resize=768%2C409&amp;ssl=1 768w, https://i2.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-source-files.png?resize=1024%2C545&amp;ssl=1 1024w, https://i2.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-source-files.png?resize=360%2C192&amp;ssl=1 360w, https://i2.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-source-files.png?resize=510%2C271&amp;ssl=1 510w, https://i2.wp.com/www.bootstrapdash.com/wp-content/uploads/2017/07/bootstrap4-beta-source-files.png?resize=247%2C131&amp;ssl=1 247w" alt="Bootstrap 4 beta source file contents" width="1366" height="727" data-recalc-dims="1" /></p>
<p>Here is a brief glimpse on what the file structure for the source code download really looks like.</p>
<pre><code class="language-plaintext">bootstrap/
├── dist/
│   ├── css/
│   └── js/
├── docs/
│   └── examples/
├── js/
└── scss/</code></pre>
<h2>Content Delivery Networks</h2>
<p>Another simple way through which you can include the Bootstrap 4 framework into your designing projects is CDNS or Content Delivery Networks. If you are using CDNs, then you don’t even have to download Bootstrap to your PC. All you need to do is to simply add the following code into the existing HTML code.</p>
<pre class="lang:default decode:true">&lt;link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"&gt;
&lt;script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"&gt;&lt;/script&gt;</pre>
<p>However, an important point to note is that individuals who are using the precompiled version of the Bootstrap framework will need to find a way to include Popper.js and jQuery. Fortunately, you can either them through CDN versions or separately download them. Here is the code that will help you to include Popper.js and jQuery.</p>
<pre class="lang:default decode:true">&lt;script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"&gt;&lt;/script&gt;
&lt;script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"&gt;&lt;/script&gt;</pre>
<h2>Package Managers</h2>
<p>Package managers also let users to easily install Bootstrap source files without any hassles.  It is crucial to remember the fact that the Bootstrap framework will need an Autoprefixer or Saas compiler If you are using a package manager for the installation process.</p>
<h2>npm</h2>
<p>You will be able to easily and quickly install the Bootstrap framework with the npm package by simply typing in the following command.</p>
<pre class="lang:default decode:true ">npm install bootstrap</pre>
<h2>RubyGems</h2>
<p>Users who wish to install Bootstrap 4 in their Ruby apps by using RubyGems and Bundler can easily do it by adding the following command to the Gemfile.</p>
<pre class="lang:default decode:true ">gem 'bootstrap', '~&gt; 4.2.1'</pre>
<p>Some users often prefer not to use Bundler. If that’s the case, then you should enter the following command.</p>
<pre class="lang:default decode:true">$ gem install bootstrap -v 4.2.1</pre>
<h2>Composer</h2>
<p>Users who are looking to install the JavaScript and Sass files of Bootstrap can do it by using the below-mentioned command.</p>
<pre class="lang:default decode:true">$ composer require twbs/bootstrap:4.2.1</pre>
<h3><strong>NuGet</strong></h3>
<p>Some developers often use.Net for their projects. If you are one among them then the following commands in Nuget can be used to install Bootstrap’s JavaScript, Sass, or CSS.</p>
<pre class="lang:default decode:true">Install-Package bootstrap</pre>
<pre class="lang:default decode:true ">Install-Package bootstrap.sass</pre>
<p>If you are still having doubts about how to install Bootstrap framework, then it is best to get in touch with our expert technicians. However, users who have already figured that out, but need guidance on how to use Bootstrap framework should make sure to check out the <b>How to Use Bootstrap with HTML</b> article. This will give you a clear idea of how to create web pages and websites by using the Bootstrap framework.</p>
</div>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-install-bootstrap-4/">How to Install Bootstrap 4</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/how-to-install-bootstrap-4/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
