Lines Matching defs:input

85                 '<div><label>' + LANG.plugins.indexmenu.namespace + '<input id="namespace" type="text"></label></div>' +
86 '<div><label class="number">' + LANG.plugins.indexmenu.nsdepth + ' #<input id="nsdepth" type="text" value=1></label></div>' +
91 '<input type="submit" value="' + LANG.plugins.indexmenu.insert + '" class="button" id="indexmenu__insert">' +
94 '<label class="number">' + LANG.plugins.indexmenu.metanum + '<input type="text" id="metanumber"></label>' +
95 '<input type="submit" value="' + LANG.plugins.indexmenu.insertmetanum + '" class="button" id="indexmenu__insertmetanum">' +
122 .html('<input id="' + elid + '" type="checkbox">' + label)
132 .html('#<input type="text" id="' + numid + '">')
157 jQuery('label.number input').on('keydown keyup', function () {
160 //checked the option if a number in input
217 * Allow only number, by direct removing other characters from input
233 value = parseInt(jQuery('input#maxn').val());
235 jQuery('input#' + checkboxid).prop('checked', value > 0);
244 jQuery('fieldset.indexmenu_options input').each(function (i, input) {
247 if (input.checked && (!$label.hasClass('jsitem') || jQuery('input#jstoggle').is(':checked'))) {
248 if (input.id === 'jstoggle') {
258 options += ' ' + input.id;
261 jQuery.each(indexmenu_wiz.fields.div6.elems[input.id].numberinput, function (j, numid) {
262 let num = parseInt(jQuery('input#' + numid).val());
295 * Takes number from input, otherwise tries the selection in textarea
308 number = parseInt(jQuery('input#metanumber').val());