jquery - How can I find the fc-event div by having the event Object ID? -



jquery - How can I find the fc-event div by having the event Object ID? -

i want append additional html event divs depending on info ajax function.

i have grabbed eventobjects with

var array = $('#calendar').fullcalendar( 'clientevents' ); for(var a=0; a<array.length; a++) { $.post(site_url+"/calendar/get_workers_on_job", { 'id' : array[a].id }, function(data) { for(var b=0;b<data.length;b++) { //here want append json info event div. } },'json'); }

but can't figure out how find out event div associated it.

i'd appreciate help can get.

put class on div utilize jquery.

jquery fullcalendar

Comments

Popular posts from this blog

iphone - Dismissing a UIAlertView -

intellij idea - Update external libraries with intelij and java -

javascript - send data from a new window to previous window in php -