basically I want to show different fullcalendars in day-view next to each other. This is some sort of resource-compare-view. A user should be able to select the desired resources from a list on the left and the respective calendar should then be added on the screen.

So, I made a little test and tried to create a fullcalendar-instance by clicking on a simple link. The calendar then shows up for approx. 1 second and the disappears.

This is the code i used to test:

<html>
...
<script type='text/javascript'>

$(document).ready(function() 
{
  $("#cmdAddNewDay").click( function() { addNewDayView() } );
});

function addNewDayView()
{
  var cal = $('#calendar').fullCalendar({ });    
}

</script>
</head>
<body>
<div id='commands'>
    <a href='' id="cmdAddNewDay">Add new cal</a>
</div>
<div id='calendar'></div>
</body>
</html>

Funny thing is, that when I call addNewDayView from $(document).ready it all works. What probably fundamental point am I missing here?

Thanks for your help, Tom

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Demo - http://jsfiddle.net/j8zvQ/1/

Use event.preventDefault() to prevent the default link behaviour.

  $("#cmdAddNewDay").click( function(event) { 
      event.preventDefault();
      addNewDayView() 
  } );
link|improve this answer
Working now, thank you! – TomRegy Oct 27 '11 at 12:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.