Print Page
What part of the page would you like to print?
Print Entire Page Print Content Only
Lexington JHS
- Our School
About Lexington Achieving Creative Excellence (ACE) Administration Athletics AUHSD Course Catalog AUHSD Educational Pledge Calendar COR Counseling COVID-19 Site Specific Protection Plan Curriculum Letters Cypress College Dual Enrollment eKadence Health Office News/Updates Principal''s Message
Promotion Requirements School Accountability Report Cards School Map Staff Directory/Email
- Students
Aeries Student Portal Bell Schedule Booktracks Calendar Community Webstore Counseling eKadence FITNESSGRAM Information Library Policies School Map Service Learning Forms Student Help Links Student Technology Resources Teacher Student Calendar Thrively
Title IX
- Parents
Aeries Parent Portal AUHSD Parent Student Handbook Bell Schedule Booktracks Calendar Counseling eKadence ELAC FITNESSGRAM Information Google Apps for Education Parent Letter Lexington JHS Student Tech Support Request Nutrition Information Parent Resources PTSA School Map School Site Council
Staff Directory/Email Teacher Student Calendar TUPE
- Staff
504 Plan Aeries Teacher Connect Booktracks District''s IIPP Plan eKadence Online Learning Tools Pupil Support Services SFE (Smart Find Express) Staff Directory/Email Surplus Request Form
- Contact Us
- Students
ANNOUNCEMENTS
COVID-19 UPDATES
Left Custom Box
Lexington Junior High Sch... » Bell Schedule
Resources
Bell Schedule 22-23 SY View PDF
Back to Top
We respectfully acknowledge that the Anaheim Union High School District is located on the ancestral land of the Gabrielino/Tongva people. We gratefully acknowledge those on whose ancestral homelands we gather, as well as the diverse and vibrant Native communities who make their home here today.
AUHSD NON-DISCRIMINATION STATEMENT
The Anaheim Union High School District prohibits discrimination, intimidation, harassment (including sexual harassment) or bullying based on a person’s actual or perceived ancestry, color, disability, gender, gender identity, gender expression, immigration status, nationality, race or ethnicity, religion, sex, sexual orientation, or association with a person or a group with one or more of these actual or perceived characteristics in its programs or activities and provides equal access to the Boy Scouts and other designated youth groups. The following employees have been designated to handle questions and complaints of alleged discrimination: Title IX Coordinator for Students:TitleIX@auhsd.usand (714)999-5621; Equity Compliance Officer for Students:EquityComplianceOfficer@auhsd.usand (714)999-5621; 504 Coordinator:504Coordinator@auhsd.usand (714)999-5408.
Google Maps4351 Orange Ave., Cypress, CA 90630
Phone: (714) 220-4201
Fax: (714) 761-4989
Legal Information Privacy Policy Visual Site Map Site Map Login
ies-web-v2-10 Copyright © 2001-2024. All Rights Reserved. Web Development by Cyberschool & IES, Inc.
Success!
\
\
\
\
\
Modal body text goes here.
\
\
\
\
\
- \
\
\
\
\
\
\
\
\
\
\
\ \ \
\
\
\
'; selectModal = $(selectModal); $('body').append(selectModal); $.multiSelect = function(element, options) { // plugin's default options // this is private property and is accessible only from inside the plugin var domModal = $("#multi-selector-modal"); var defaults = { modal: domModal, domTitle: domModal.find(".modal-title"), domDescription: domModal.find(".modal-description"), domSearch: domModal.find(".search-input"), domSearchButton: domModal.find(".search-input-button"), checkboxList: domModal.find(".checkbox-list"), pagination: domModal.find(".pagination"), saveButton: domModal.find(".save-button"), selectedItems: {}, selected: [],//passed in default selected items. items: [], trigger: '', title: '', description: '', saveButtonText: 'Save', // if your plugin is event-driven, you may provide callback capabilities // for its events. execute these functions before or after events of your // plugin, so that users may customize those particular events without // changing the plugin's code // onFoo: function() {} } // to avoid confusions, use "plugin" to reference the // current instance of the object var plugin = this; // this will hold the merged default, and user-provided options // plugin's properties will be available through this object like: // plugin.settings.propertyName from inside the plugin or // element.data('multiSelect').settings.propertyName from outside the plugin, // where "element" is the element the plugin is attached to; plugin.settings = {} var $element = $(element), // reference to the jQuery version of DOM element element = element; // reference to the actual DOM element // the "constructor" method that gets called when the object is created plugin.init = function() { // the plugin's final properties are the merged default and // user-provided options (if any) plugin.settings = $.extend({}, defaults, options); $.each(plugin.settings.selected, function(i, id) { plugin.settings.selectedItems[id] = true; }); // code goes here // console.log($element); // console.log(plugin.settings.domTitle); plugin.settings.trigger = $('#' + plugin.settings.trigger); plugin.settings.trigger.click(function(e) { e.preventDefault(); plugin.openModal(); }); plugin.settings.domSearchButton.click(function(e) { if(!isActive()) { return false; } alert(plugin.settings.domSearch.val()); }); $(document).on("click", ".switch-input", function(e) { if(!isActive()) { return; } var itemValue = $(e.target).val(); if(typeof plugin.settings.selectedItems[itemValue] === "undefined") { plugin.settings.selectedItems[itemValue] = true; } else { delete plugin.settings.selectedItems[itemValue]; } // console.log(plugin.settings.selectedItems); }); plugin.settings.saveButton.click(function(e) { if(!isActive()) { return; } var values = Object.keys(plugin.settings.selectedItems); // console.log(values); $element.val(values.join()); plugin.settings.modal.modal('hide'); }); } // public methods // these methods can be called like: // plugin.methodName(arg1, arg2, ... argn) from inside the plugin or // element.data('multiSelect').publicMethod(arg1, arg2, ... argn) from outside // the plugin, where "element" is the element the plugin is attached to; // a public method. for demonstration purposes only - remove it! plugin.openModal = function() { // code goes here plugin.settings.domTitle.text(plugin.settings.title); plugin.settings.domDescription.text(plugin.settings.description); plugin.settings.modal.modal('show'); activeInstance = $element; plugin.settings.domSearch.val(''); renderItems(); plugin.settings.saveButton.text(plugin.settings.saveButtonText); } // private methods // these methods can be called only from inside the plugin like: // methodName(arg1, arg2, ... argn) // a private method. for demonstration purposes only - remove it! var isActive = function() { return activeInstance == $element; } var renderItems = function() { plugin.settings.pagination.pagination({ dataSource: plugin.settings.items, pageSize: 15, callback: function(data, pagination) { // template method of yourself plugin.settings.checkboxList.empty(); $.each(data, function(i, item) { var checked = (typeof plugin.settings.selectedItems[item.id] === "undefined") ? '' : 'checked'; var template = '
\ \
\
\ \
'; template = $(template); plugin.settings.checkboxList.append(template); }); } }) } // fire up the plugin! // call the "constructor" method plugin.init(); } // add the plugin to the jQuery.fn object $.fn.multiSelect = function(options) { // iterate through the DOM elements we are attaching the plugin to return this.each(function() { // if plugin has not already been attached to the element if (undefined == $(this).data('multiSelect')) { // create a new instance of the plugin // pass the DOM element and the user-provided options as arguments var plugin = new $.multiSelect(this, options); plugin.modal = selectModal; // in the jQuery version of the element // store a reference to the plugin object // you can later access the plugin and its methods and properties like // element.data('multiSelect').publicMethod(arg1, arg2, ... argn) or // element.data('multiSelect').settings.propertyName $(this).data('multiSelect', plugin); } }); } })(jQuery);
NOT YET CHECKED
7/7/24 5:38 AM
'); $.each(issueMap[v], function(issueKey, issueObject) { $.each(issueObject.nodes, function(nodeIndex, node) { jQuery('#adaIssue-'+i+'').append("HTML: "+node.html.replace(//g,">") +"
Selector:
" + node.target + "
Attempted Render: " +node.html.replace(/script/g,'').replace(/none/g,'')+"
"); if(testmode) { jQuery(node.target).css('background-color','rgba(255,255,0,.6)').css('border','2px solid red'); } }); }); }); //ensure the UI is correct - ie if you passed before then failed right now var adaTestPass = testmode ? "TESTMODE - FAIL" : "FAIL"; jQuery('#adaModal .passOrFail').text(adaTestPass).css('background-color','#c33838'); jQuery('#adaModal .modal-header').css('background-color','#c33838'); //now show the UI for ada issues. jQuery('#adaModal .adaIssueBody').slideDown(); } else if(result.status == "pass") { //there are no ada issues var adaTestPass = testmode ? "TESTMODE - PASS" : "PASS"; jQuery('#adaModal .adaIssueBody').slideUp(); jQuery('#adaModal .passOrFail').text(adaTestPass).css('background-color','#5cb85c'); jQuery('#adaModal .modal-header').css('background-color','#5cb85c'); } else if(result.status == "ERROR") { jQuery('#adaModal .passOrFail').text("Error scanning page, please contact support@iescentral.com").css('background-color','#c33838'); jQuery('#adaModal .modal-header').css('background-color','#c33838'); } else { var adaTestPass = "Not Yet Checked" jQuery('#adaModal .adaIssueBody').slideUp(); jQuery('#adaModal .passOrFail').text(adaTestPass).css('background-color','#D96C00'); jQuery('#adaModal .modal-header').css('background-color','#D96C00'); } } cs2.ada.updateNavPageByResponse = function(response) { result = JSON.parse(response); var link = jQuery("#adaDashboardNavList ul.list-group li > a[href='"+result.url+"']").closest("li.adalineinstance"); if(result.status == "pass") { jQuery(link).find('span.adastatus').text(result.status.toUpperCase()) .removeClass('badge-pass').removeClass('badge-fail').removeClass('badge-unchecked') .addClass("badge-pass"); jQuery(link).find('span.adaerrorcount').hide(); jQuery(link).data('url', result.url); } else if(result.status == "fail") { jQuery(link).find('span.adastatus').text(result.status.toUpperCase()) .removeClass('badge-pass').removeClass('badge-fail').removeClass('badge-unchecked') .addClass("badge-fail"); jQuery(link).find('span.adaerrorcount').text('Errors: ' + (result.issueJSON).length).show(); jQuery(link).data('url', result.url); } else { jQuery(link).find('span.adastatus').text(result.status.toUpperCase()) .removeClass('badge-pass').removeClass('badge-fail').removeClass('badge-unchecked') .addClass("badge-unchecked"); jQuery(link).find('span.adaerrorcount').hide(); jQuery(link).data('url', result.url); } }