How can I get the date of a recurring event. I want to be able to retrieve the date of the recur event that I click on. Not the start or end date but the date that particular recurring event is on.
If you have id of clicked event ( it must look as {id}#{timestamp} ) you can use
scheduler.getEvent(id).start_date to get start date of that instance of recurring event.
While recuring instance do not saved separately in DB, they are have their own unique ids, when rendered on client side, and normal api calls can be used to retrieve info about them.