gokuney / jquery-events-calendar

Automatically exported from code.google.com/p/jquery-events-calendar
0 stars 0 forks source link

jquery error message #11

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. jqeury error (1.9)
2. message: flags.wrap.on is not a jquery function i'm using IE9.0.8112.16421
3.

What is the expected output? What do you see instead?
EventCalendar dates clickable, but they are not

What version of the product are you using? On what operating system?
0.51

Please provide any additional information below.
Using the human date interface
Calendar loads normally but the first date of the next month is not marked up. 
When you click on that date nothing happends. In the list below the calendar 
date is visible
All is integrated in an index.php within a div loaded by 
<script type="text/javascript">
$('#containerright').load('index1.html');
</script>
When running the index1.html it works fine.

This is the index1.html
<!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" href="calender/css/eventCalendar.css">
    <link rel="stylesheet" href="calender/css/eventCalendar_theme_responsive.css">
    <script type="text/javascript" src="jquery-latest.js"></script>
</head>
<body>
    <div id="eventCalendarHumanDate"></div>
    <script>
    $(document).ready(function() {
                        $("#eventCalendarHumanDate").eventCalendar({
                            eventsjson: 'calender/json/event.humanDate.json1.php',
                            jsonDateFormat: 'human',

        showDescription: true,
    eventsScrollable: true
    });
    });
</script>

</body>
<script src="calender/js/jquery.eventCalendar.js" 
type="text/javascript"></script>
</html>

Original issue reported on code.google.com by stuurm...@casema.nl on 27 Mar 2013 at 10:19