Aeries Parent Portal - South JHS (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

+ -

ADA

Alert

WebMail

Login

South JHS

  • Our School

    Administration/Administración Athletics AUHSD Course Catalog AUHSD Educational Pledge Calendar Clubs Counseling COVID-19 Site Specific Protection Plan Gallery General Info Health Office News Principal''s Message Promotion Requirements

    School Accountability Report Cards Staff Directory/Email

  • Students

    Aeries Student Portal AP Exam 2020 Bell Schedule Calendar Counseling/Consejería Digital Citizenship FITNESSGRAM Information Home-School Compact Library Service Learning Forms South Anti-Bullying Policy Student Technology Resources

    Teacher Student Calendar Title IX TUPE Tutoring

  • Parents

    Aeries Parent Portal AUHSD Parent Student Handbook Bell Schedule Calendar Digital Citizenship ELAC Family and Community Engagement FITNESSGRAM Information Google Apps for Education Parent Letter News Parent Involvement Policy School Site Council Staff Directory/Email

    Student Health Tips Teacher Student Calendar Uniform Policy

  • Staff

    504 Plan AeriesTeacher Connect Board Policy Use of Technology Digital Citizenship District''s IIPP Plan Online Learning Tools Pupil Support Services Staff Directory/Email Surplus Request Form

  • Contact Us

    Email Us Get Directions

Family and Community Engagement

ANNOUNCEMENTS

COVID-19 UPDATES

Left Custom Box


Aeries Parent Portal

"); $("#col_1").append("

"); $("#col_1").append("

"); $("#col_1").append("

"); var canAdmin = 0; grab_pagedata(86212,"custom1","11544",currentSchool.Alias,currentSchool.id,canAdmin); var canAdmin = 0; grab_pagedata(86246,"custom1","11562",currentSchool.Alias,currentSchool.id,canAdmin); var canAdmin = 0; grab_pagedata(86247,"custom1","11563",currentSchool.Alias,currentSchool.id,canAdmin); var canAdmin = 0; grab_pagedata(86248,"custom1","11564",currentSchool.Alias,currentSchool.id,canAdmin);

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 Maps2320 E. South St., Anaheim, CA 92806
Phone: (714) 999-3667
Fax: (714) 999-3721

Legal Information Privacy Policy Visual Site Map Site Map Login


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

8/19/24 4:40 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); } }

Aeries Parent Portal - South JHS (2024)
Top Articles
Scrabble Word Finder | Scrabble Cheat
Word Scramble - Unscramble Letters To Find Words
How To Start a Consignment Shop in 12 Steps (2024) - Shopify
Frases para un bendecido domingo: llena tu día con palabras de gratitud y esperanza - Blogfrases
Fusion
His Lost Lycan Luna Chapter 5
Lowes 385
CHESAPEAKE WV :: Topix, Craigslist Replacement
GAY (and stinky) DOGS [scat] by Entomb
Hover Racer Drive Watchdocumentaries
Jessica Renee Johnson Update 2023
Ap Chem Unit 8 Progress Check Mcq
MindWare : Customer Reviews : Hocus Pocus Magic Show Kit
Simpsons Tapped Out Road To Riches
Aldi Süd Prospekt ᐅ Aktuelle Angebote online blättern
Webcentral Cuny
Sadie Proposal Ideas
Recap: Noah Syndergaard earns his first L.A. win as Dodgers sweep Cardinals
Long Island Jobs Craigslist
Apple Original Films and Skydance Animation’s highly anticipated “Luck” to premiere globally on Apple TV+ on Friday, August 5
The Weather Channel Local Weather Forecast
Gazette Obituary Colorado Springs
Buying Cars from Craigslist: Tips for a Safe and Smart Purchase
Gotcha Rva 2022
Olivia Maeday
Renfield Showtimes Near Paragon Theaters - Coral Square
Bfsfcu Truecar
Log in to your MyChart account
UAE 2023 F&B Data Insights: Restaurant Population and Traffic Data
Otis Inmate Locator
Free Tiktok Likes Compara Smm
King Soopers Cashiers Check
Redbox Walmart Near Me
Warn Notice Va
Solve 100000div3= | Microsoft Math Solver
Terrier Hockey Blog
American Bully Xxl Black Panther
Avance Primary Care Morrisville
19 Best Seafood Restaurants in San Antonio - The Texas Tasty
Cherry Spa Madison
Red Dead Redemption 2 Legendary Fish Locations Guide (“A Fisher of Fish”)
Is The Nun Based On a True Story?
Vons Credit Union Routing Number
Noh Buddy
Babykeilani
Ts In Baton Rouge
Lebron James Name Soundalikes
Wild Fork Foods Login
How To Win The Race In Sneaky Sasquatch
Charlotte North Carolina Craigslist Pets
Texas 4A Baseball
Latest Posts
Macon-Bibb County Tax|Property/Garbage
Viprow Golf
Article information

Author: Nathanael Baumbach

Last Updated:

Views: 6492

Rating: 4.4 / 5 (55 voted)

Reviews: 94% of readers found this page helpful

Author information

Name: Nathanael Baumbach

Birthday: 1998-12-02

Address: Apt. 829 751 Glover View, West Orlando, IN 22436

Phone: +901025288581

Job: Internal IT Coordinator

Hobby: Gunsmithing, Motor sports, Flying, Skiing, Hooping, Lego building, Ice skating

Introduction: My name is Nathanael Baumbach, I am a fantastic, nice, victorious, brave, healthy, cute, glorious person who loves writing and wants to share my knowledge and understanding with you.