// use to give the preview of details for an event below a calendar var updateEventDescription = function(event, jsEvent) { $("#event_quick_description").empty(); $("#event_quick_description").append( $("

").append( $('', { text : event.title, href : event.url }) ) ).append(event.details); $("#event_quick_description").show(); } jQuery(function($) { $('ul.events').attach(Collapsible); $('a.show_hide_link').attach(ShowHideLink); $('a.view_events').attach(EventView); }); /* http://www.learningjquery.com/2007/08/clearing-form-data */ $.fn.clearForm = function() { return this.each(function() { var type = this.type, tag = this.tagName.toLowerCase(); if (tag == 'form') return $(':input',this).clearForm(); if (type == 'text' || type == 'password' || tag == 'textarea') this.value = ''; else if (type == 'checkbox' || type == 'radio') this.checked = false; else if (tag == 'select') this.selectedIndex = -1; }); };