Anaheim HS - Anaheim HS (2024)

Print Page

What part of the page would you like to print?

Print Entire Page Print Content Only

Skip To Main Content

Site Map

Anaheim HS - Anaheim HS (1)

+ -

ADA

Alert

Login

Anaheim HS

Password Protected

To view this page please enter your password below:


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 Maps811 W. Lincoln Ave., Anaheim, CA 92805
Phone: (714) 999-3717
Fax: (714) 772-6537

Legal Information Privacy Policy Visual Site Map Site Map Login


ies-web-v2-17 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

4/26/24 6:34 AM

'); jQuery('.adaIssuesTabbable div.tab-content').append('

'); $.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); } }

Dismiss Popup

Title

Subscribe

OK Subscribe Dismiss

Dismiss Popup

Login

Account Unlock Request

Password Reset

Session Timeout

Session for has timed out.

Logging in as the above user will re-enable all open tabs and allow you to continue editing.

Press 'Enter' to submit and log back in

Alumni Manager

Changes are saved automatically. This Configuration will set which Alumni can be viewed in the Alumni Module - found here

  • Pending Approval
  • Approved Alumni
Name Graduation Year E-mail Phone Number
First Name Last Name E-mail Phone Number

Success! Your changes have been saved. This page will refresh in just a moment.

Add/Edit Alumni Info

Personal Info

Contact Info

Career Info

Additional Info

Attendance Info

Success! Your changes have been saved. This window will close in a moment.

Delete Alumni

You are about to delete . Are you sure you want to perform this action?

This action cannot be undone.

Settings

  • General
  • Thumbnail
  • Widget
  • List
  • Post

This setting will rename the module

Enter 0 to show all of the post excerpt

These settings configure the logged out List View shown in the Calendar Month View

Number Offset for displaying events. i.e. entering -2 will begin displaying events from 2 days before.

Maximum number of days to show events from in the list view

Maximum number of items to display in the list view

Success! Your changes have been saved. The page will refresh in just a moment.

Available Albums

Select which albums you would like to display in the Gallery Module. Site visitors can view the images inside the selected albums

# Album Name Owner Location Description Images

Success! Your changes have been saved. The page will refresh in a moment

Category Manager

You may designate which module(s) those categories can be selected from

Edit Category

Success! Your changes have been saved. This window will close in just a moment.

Error!

Anaheim HS - Anaheim HS (2024)
Top Articles
Sermons about Luke 10:30-37 - SermonCentral.com
Sermons about Direct - SermonCentral.com
Bay Path University Profile < Bay Path University
Home | My Bay Path Portal
Latest Posts
Sermons about Man's Best Friend
Sermons about Spirit Of Counsel
Article information

Author: Kerri Lueilwitz

Last Updated:

Views: 6160

Rating: 4.7 / 5 (47 voted)

Reviews: 86% of readers found this page helpful

Author information

Name: Kerri Lueilwitz

Birthday: 1992-10-31

Address: Suite 878 3699 Chantelle Roads, Colebury, NC 68599

Phone: +6111989609516

Job: Chief Farming Manager

Hobby: Mycology, Stone skipping, Dowsing, Whittling, Taxidermy, Sand art, Roller skating

Introduction: My name is Kerri Lueilwitz, I am a courageous, gentle, quaint, thankful, outstanding, brave, vast person who loves writing and wants to share my knowledge and understanding with you.