Fox = {}; Fox.Strings = { add: function (object) { jQuery.extend(this, object); return this; } }; Fox.Options = { // Fox.Options.add('key', {...}); add: function (key, data) { var o = {}; o[key] = data; jQuery.extend(this, o); return this; }, // Return by copy: Fox.Options.get('key'); // Return by reference: Fox.Options['key']; get: function (key) { return jQuery.extend({}, this[key]); } }; (function () { Fox.Strings.add( { JCANCEL: "Annulla", COM_FOXCONTACT_BROWSE_FILES: "Carica file", COM_FOXCONTACT_FAILED: "Fallito", COM_FOXCONTACT_SUCCESS: "Riuscito", COM_FOXCONTACT_NO_RESULTS_MATCH: "Nessun risultato corrispondente", COM_FOXCONTACT_MISSING_JQUERY: "Can't find jQuery framework, Fox Contact will not work properly.", COM_FOXCONTACT_READ_MORE: "Per saperne di più...", COM_FOXCONTACT_REMOVE_ALT: "Rimuovi", JURI_ROOT: "" } ); Date.monthNames = ["Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre"]; Date.dayNames = ["Domenica", "Lunedì", "Martedì", "Mercoledì", "Giovedì", "Venerdì", "Sabato"]; Date.monthNumbers = { "Gennaio": 0, "Febbraio": 1, "Marzo": 2, "Aprile": 3, "Maggio": 4, "Giugno": 5, "Luglio": 6, "Agosto": 7, "Settembre": 8, "Ottobre": 9, "Novembre": 10, "Dicembre": 11 }; // Calendar default options Fox.Options.add('calendar', { dayOfWeekStart: JSON.parse("1"), lang: 'dynamic', i18n: { dynamic: { months: Date.monthNames, dayOfWeek: ["Dom", "Lun", "Mar", "Mer", "Gio", "Ven", "Sab"] } } }); })(); jQuery(document).ready(function ($) { $('.fox-item-captcha-img-reload').each(function () { $(this).click(function () { var image = document.getElementById($(this).attr("data-captcha-img")); // Generates a unique id with an 8 digits fixed length var uniqueid = Math.floor(Math.random() * Math.pow(10, 8)).toString(); while (uniqueid.length < 8) { uniqueid = '0' + uniqueid; } // Update the image src image.src = image.src .replace(/uniqueid=[0-9]{8}/, "uniqueid=" + uniqueid) // non SEF case .replace(/uniqueid\/[0-9]{8}/, "uniqueid/" + uniqueid) // SEF case ; }).show(); }); }); /* Enable the following function if you want to enable autofocus to the first input of the first form in the page */ /* jQuery(document).ready(function ($) { $('.fox-form').find('input[type=text]').filter(':visible:first').focus(); }); */