i have used Full Calendar plugin in Asp mvc4 application, i want to get events

c.austin

New Member
i have used Full Calendar plugin in Asp mvc4 application, i want to get events that are being added by user and send to controller . \[code\]<script type="text/javascript" > $(document).ready(function () { if ($("#fee").text() == "") { $("#fee").attr(disabled = "disabled"); } else { $("#fee").attr(disabled = "disabled"); } $("select").change(function () { var text = "is free"; if ($('#inspect option:selected').text() == "Is Free") { $('#charge').hide(); } else { $('#charge').show(); } }); });</script>`\[/code\]
 
Back
Top