JavaScript / jQuery onClick?

I am using a WordPress plugin called Events Calendar. The calendar widget had a small feature that if you clicked on one of the dates, a pop-up window appeared showing you the full event details. Does anyone know if I can change that to go to another page (I have a page with a large calendar).

The small calendar can be seen at www.zumbasudbury.ca on the bottom left

In JQuery it quite simple to do so:


$(document).ready(function() {
    $("span[id*='events-calendar']").click(function(){
         href.location = "your url with big calrendar";
     });
});

The code pretty much with run on click of any element that contain ‘events-calendar’ in ID, which is cells of your calendar in this case.
Since your pop-up window appears only on mouseover action, the onlick will not interferer with that.