I am developing a webapp and am using jQuery fullcalendar plugin.
I need to somehow disable certain time-slots.
The current method I am using is to add event
BTW, Why don't you check it in Select callback?
Select
select: function( start, end, allDay, jsEvent, view ) { if( /*start is the disabled time*/ ) return false; else{ // Proceed with the normal flow of your application // You might show a popup to get info from user to create // a new event here } }