Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

129
Views
How to apply colours for each events in full calendar js?

I want to show multiple events with different colour for each. Here two ajax response have displayed in calendar. But all the events shows only green. The Second events also visible in green colour. How to show each events with different colours?

My code is as follows:

$('#calendar').fullCalendar({

      events: function(start, end, timezone, callback) {
         $.ajax({
            url: url1,
            dataType: 'json',
            success: function(response) {
                 var events = [];
              $(response.data).each(function() {
                 events.push({
                  title: $(this).attr('title'),
                  start: $(this).attr('start'), // will be parsed
                  color: 'green'
                 });
              });
             callback(events);
            }
         });
         $.ajax({
            url: url2,
            dataType: 'json',
            success: function(response) {
                 var events = [];
              $(response.data).each(function() {
                 events.push({
                  title: $(this).attr('title'),
                  start: $(this).attr('start'), // will be parsed
                  color: 'red'
                 });
              });
             callback(events);
            }
         });
       }
       
   });
over 4 years ago · Santiago Trujillo
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!