Lines Matching refs:jQuery

3     jQuery('.bez_commcause_delete_prompt').click('on', function (event) {
9 var $task_form = jQuery('.bez_task_form');
13 jQuery("input[name=plan_date]").datepicker({
16 if (jQuery("input[name=all_day_event]").is(":checked")) {
17 jQuery('#task_datapair').hide();
19 jQuery("input[name=all_day_event]").on('change', function() {
20 if (jQuery(this).is(":checked")) {
21 jQuery('#task_datapair').hide();
23 jQuery('#task_datapair').show();
28 jQuery('#task_datapair .time').timepicker({
32 var timeDatepair = new Datepair(jQuery('#task_datapair').get(0));
36 if (jQuery('#reason').length > 0) {
37 jQuery('#no_evaluation').on('change', function() {
38 if (jQuery(this).prop('checked') === true) {
39 jQuery('#reason').prop('disabled', true).hide();
40 jQuery('.bez_reason_toolbar').hide();
42 jQuery('#reason').prop('disabled', false).show();
43 jQuery('.bez_reason_toolbar').show();
47 bez.rich_text_editor(jQuery('#reason'), jQuery('.bez_reason_toolbar'));
50 if (jQuery('.bez_metaform').length > 0) {
51 var tooltips = jQuery('.bez_metaform').find("input, select").tooltip({
58 jQuery.validate({
77 jQuery("input[name=date], input[name=close_date]").datepicker({
82 var $bez_comment_form = jQuery('.bez_comment_form');
94 jQuery(document).tooltip({
102 var $this = jQuery(this),
106 var $this = jQuery(this);
114 jQuery("#plugin__bez_do_task_button").click(function() {
116 jQuery("button[value=task_do], button[value=task_reopen]").effect("highlight");
119 jQuery('#issue_participants .participant_remove').hide().click('on', function (event) {
124 jQuery('#issue_participants li').hover(
127 jQuery(this).find('.participant_remove').show();
131 jQuery(this).find('.participant_remove').hide();
136 jQuery.widget( "custom.inviteUsersCombobox", {
138 this.wrapper = jQuery( "<span>" )
151 this.input = jQuery( "<input>" )
159 source: jQuery.proxy( this, "_source" )
183 jQuery( "<a>" )
213 var matcher = new RegExp( jQuery.ui.autocomplete.escapeRegex(request.term), "i" );
215 var text = jQuery( this ).text();
239 if ( jQuery( this ).text().toLowerCase() === valueLowerCase ) {
268 jQuery( "#bez_invite_users select" ).inviteUsersCombobox();
271 if (jQuery('#plugin__bez_task_pin_form').length > 0) {
272 var $form = jQuery('#plugin__bez_task_pin_form'),
283 jQuery(this).hide();
288 var $contentTextarea = jQuery('.bez_comment textarea[name=content]');
290 var $doTaskButton = jQuery('button[name=fn][value=task_do]'),
291 $addCommentButton = jQuery('button[name=fn][value=comment_add]');