Lines Matching refs:jQuery

3 jQuery(document).ready(function() {
44 jQuery('#description').show();
45 jQuery('#description_toggle_button').attr('src', collapse_icon);
47 jQuery('#description').hide();
48 jQuery('#description_toggle_button').attr('src', expand_icon);
54 jQuery('.defaults').show();
55 jQuery('#defaults_toggle_button').attr('src', collapse_icon);
57 jQuery('.defaults').hide();
58 jQuery('#defaults_toggle_button').attr('src', expand_icon);
68 jQuery('#toggleDescription').on('click', function() {
75 jQuery('#toggleDefaults').on('click', function() {
83 jQuery(document).ready(function() {
87 jQuery('.newItem').each(function(){
88 let inputString = jQuery(this).val();
100 jQuery('.deleteButton').on('click', function(nr) {
101 jQuery(this).parent().parent().remove();
102 jQuery('.newItem').each(function(){
103 jQuery(this).val('');
109 jQuery('.disableButton').on('click', function(nr) {
110 let $row = jQuery(this).parent().parent();
113 let $newItems = jQuery('.newItem');
117 jQuery(this).val(prefix + defaultKey);
122 jQuery('#confmanager__config__files').on('change', function(){
126 jQuery('.submitOnTab').on('keydown', function(event){
137 jQuery(document).ready(function(){
138 jQuery('.newItem').first().focus();
141 jQuery(document).ready(function(){
146 let parent = jQuery(element).parent().parent().children().first();
147 let input = jQuery(parent).children('input').first();
148 let value = jQuery(input).attr('value');
152 let parent = jQuery(element).parent().parent().children().first().next();
153 let input = jQuery(parent).children('input').first();
154 let value = jQuery(input).attr('value');
159 jQuery('.popup_mask').hide();
160 jQuery('.popup').hide();
161 jQuery('#keyParam').removeAttr('value');
162 jQuery('#configIdParam').removeAttr('value');
167 let file = jQuery('#file_upload_input').val();
171 jQuery('#popup_select_file').hide();
172 jQuery('#popup_show_progress').show();
173 jQuery('.popup').css('cursor', 'wait');
178 jQuery('#popup_show_progress').hide();
179 jQuery('#popup_success').show();
180 jQuery('.popup').css('cursor', 'default');
185 jQuery('#popup_show_progress').hide();
186 jQuery('#popup_error').show();
187 jQuery('<p>'+context.responseText+'</p>').insertAfter('#popup_error h3');
188 jQuery('.popup').css('cursor', 'default');
192 let $popup = jQuery('.popup');
195 $popup.css('left', jQuery(window).width() / 2 - width / 2);
196 $popup.css('top', jQuery(window).height() / 2 - height / 2);
202 let $popupmask = jQuery('.popup_mask');
203 $popupmask.css('width', jQuery(window).width());
204 $popupmask.css('height', jQuery(window).height());
213 jQuery('#fileuploadform').ajaxForm(options);
215 jQuery('.upload_image_button').on('click', function(){
218 jQuery('#keyParam').val(key);
219 jQuery('#valueParam').val(value);
220 jQuery('#configIdParam').val(JSINFO.configId);
233 jQuery('.delete_image_button').on('click', function() {
234 jQuery.ajax({
247 jQuery('#popup_cancel').on('click',function() {
252 jQuery(window).on('resize', function() {
260 jQuery('.continue').attr('href', window.location);