<?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>Fullcalendar Archives - Codeplaners</title>
	<atom:link href="https://codeplaners.com/tag/fullcalendar/feed/" rel="self" type="application/rss+xml" />
	<link>https://codeplaners.com/tag/fullcalendar/</link>
	<description>Code Solution</description>
	<lastBuildDate>Tue, 24 Aug 2021 23:06:48 +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>Fullcalendar Archives - Codeplaners</title>
	<link>https://codeplaners.com/tag/fullcalendar/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Fullcalendar Js Change Event color Example</title>
		<link>https://codeplaners.com/fullcalendar-js-change-event-color-example/</link>
					<comments>https://codeplaners.com/fullcalendar-js-change-event-color-example/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 24 Aug 2021 23:06:48 +0000</pubDate>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Fullcalendar]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Source Code]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1284</guid>

					<description><![CDATA[<p>Hi Dev, Today, i we will show you fullcalendar js change event color example. This article will give you simple example of fullcalendar js change event color example. you will fullcalendar js change event color example. So let’s follow few step to create example of fullcalendar js change event color example. Example: I hope it &#8230; <a href="https://codeplaners.com/fullcalendar-js-change-event-color-example/" class="more-link">Continue reading<span class="screen-reader-text"> "Fullcalendar Js Change Event color Example"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/fullcalendar-js-change-event-color-example/">Fullcalendar Js Change Event color 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 fullcalendar js change event color example. This article will give you simple example of fullcalendar js change event color example. you will fullcalendar js change event color example. So let’s follow few step to create example of fullcalendar js change event color example.</p>
<p><img decoding="async" style="border: 3px solid #ff5722;" alt="Fullcalendar Js Change Event color Example" class="lazyloaded" src="https://codeplaners.com/wp-content/uploads/2021/08/fullcalendar.png"></p>
<h3 class="step_code">Example:</h3>
<pre class="brush: xml; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;meta charset=&quot;utf-8&quot;&gt;
    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width&quot;&gt;
    &lt;title&gt;Fullcalendar Js Change Event color Example&lt;/title&gt;
    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.1.0/fullcalendar.css&quot; /&gt;
&lt;/head&gt;
&lt;style type=&quot;text/css&quot;&gt;
    #calendar {
        width:80%;
        margin: 20px auto;
    }
&lt;/style&gt;
&lt;body&gt;
    &lt;div id=&quot;calendar&quot;&gt;&lt;/div&gt;
&lt;/body&gt;
&lt;script src=&quot;https://cdn.jsdelivr.net/momentjs/2.14.1/moment-with-locales.min.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;https://code.jquery.com/jquery-2.1.4.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.1.0/fullcalendar.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
    var defaultEvents = &#x5B;
    {
        // Just an event
        title: 'Test Event',
        start: '2021-08-22',
        className: 'scheduler_basic_event',
        color:'#ea2062'
    },
];

// Any value represanting monthly repeat flag
var REPEAT_MONTHLY = 1;
// Any value represanting yearly repeat flag
var REPEAT_YEARLY = 2;
    
$('#calendar').fullCalendar({
    header: {
        left: 'prev,next today',
        center: 'title',
        right: 'month,agendaWeek,agendaDay'
    },
        editable: true,
        // defaultDate: '2017-02-16',
        eventSources: &#x5B;defaultEvents],
        dayRender: function( date, cell ) {
        // Get all events
        var events = $('#calendar').fullCalendar('clientEvents').length ? $('#calendar').fullCalendar('clientEvents') : defaultEvents;
    }
});
&lt;/script&gt;
&lt;/html&gt;
</pre>
<p>I hope it will assist you…</p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/fullcalendar-js-change-event-color-example/">Fullcalendar Js Change Event color Example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/fullcalendar-js-change-event-color-example/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
