Question: ANSWER SHOULD BE UNIQUE AND NOT COPY FROM ALREADY POSTED FROM CHEG Mobile website (Note: Create a new folder to hold all your files/folders). You

ANSWER SHOULD BE UNIQUE AND NOT COPY FROM ALREADY POSTED FROM CHEG

Mobile website (Note: Create a new folder to hold all your files/folders). You will need to include:

  • index.html

Links:

  • Link to jquery.js
  • Link to your js script file
  • Link to your stylesheet file

Updates:

  • Be sure you have a viewport META tag
  • Include your login name-student number in the </strong> tags</li> <li>A <strong>folder</strong> to hold other HTML pages (ex. pages)</li> <li>A <strong>folder</strong> to hold stylesheet(s) (ex. css)</li> </ul> <p>Your main stylesheet MUST be called <strong>yourUserName.css</strong> (ex. doej.css) and must be linked in the index.html file.</p> <p>It is your choice what to name any other stylesheets (for example, you may have a separate stylesheet for the 2nd page of this assignment).</p> <ul> <li>A <strong>folder</strong> to hold your script files (ex. js or scripts)</li> </ul> <p>You MUST include <strong>jquery.js</strong> in this folder and link to this file in index.html</p> <p>Your main script file MUST be called <strong>yourLoginName.js</strong> (ex. doej.js) and must be linked in index.html</p> <p>It is your choice what to name the <strong>.js</strong> file for the 2nd page</p> <ul> <li>A <strong>folder</strong> to hold your images for the assignment (ex. images)</li> <li>A <strong>folder</strong> to hold your JSON file (ex. data) / Download the JSON file from SLATE and include in this folder</li> </ul> <p><strong>Update</strong> and include your personal information in the JSON file where indicated</p> <p><strong>Script setup (yourLoginName.js) and start-up:</strong></p> <ul> <li>Setup your <strong>$document.ready</strong> statement (jQuery)</li> </ul> <p>NOTE: Class declarations and variables should be declared above/outside the $document.ready call</p> <ul> <li>Include an <strong>AJAX</strong> call to retrieve the <strong>A1-JSON.json</strong> file included in your data folder ($.getJSON)</li> </ul> <p><strong>Save individual data to Local Storage (should be populated from JSON file)</strong></p> <p><em>NOTE: Because of the asynchronous nature of loading, you will need to save your personal data to Local Storage and then retrieve into your variables outside of the .getJSON file</em></p> <ul> <li>Declare <strong>variables</strong> (your choice of variable names) and <strong>populate</strong> from Local Storage:</li> </ul> <p>Include a variable for each data item in local storage populated from JSON file</p> <p><em>NOTE: declare variables above $document.ready</em></p> <ul> <li>Create a <strong>Class</strong> for Program/Term data</li> </ul> <p>Term number</p> <ul> <li>Will hold a number</li> <li>Example: 1 for Term 1)</li> </ul> <p>Term Program name/Term name</p> <ul> <li>Will hold string data showing your program abbreviation and the term name</li> <li>Example: CP for Term 1</li> <li>Populate an <strong>array</strong> (hard-coded-your choice of array name) with 4 Program/Term entries based on the Class; be sure to populate within the $document.ready function</li> </ul> <p>Example:</p> <ul> <li>Term number: 1 Term Name: CP for Term One</li> </ul> <p>CP-Computer Programming; SE-Software Engineering; ISE for Information Systems Engineering; SDNE for Software Development and Network Engineering)</p> <ul> <li>Create a <strong>Class</strong> for course codes (ex. 1 - PROG - 10082 - image name):</li> </ul> <p>Term / number data type (ex. 1, 2, 3, 4)</p> <p>Course Type / string data type (ex. PROG, SYST, TELE, COMM, SYST, DBAS, INFO)</p> <p>Course Code / string data type (ex. 10082, 10049, 13167, etc.)</p> <p>Image (file name from the images folder) that represents the Course (ex.)</p> <ul> <li>Populate an <strong>array</strong> (hard-coded-your choice of array name) with at least 3-course <strong>codes</strong> based on the Class for each of the first 4 terms of your program (3 for each term; 12 in all if using minimum number. You can include all courses if you want).</li> </ul> <p>Ex. Term: 1 Course Type: PROG Course Code: 10082 Image: java.png</p> <p><strong>The layout of this site will include the following:</strong></p> <ul> <li> <strong>Header section</strong> - Displays on load using jQuery (Hint: Include in $(document).ready(function() {}); )</li> </ul> <p><em>SYST24444 Assignment #1 for Your Full Name / Your Student Number</em></p> <ul> <li>Name and number <strong>MUST</strong> be pulled from variables loaded from JSON/Local Storage</li> <li>Template Literal <strong>MUST</strong> be used to build output string.</li> </ul> <p><strong>MUST</strong> include some formatting for the header area (your choice) so you can include the formatting on the tag or create a section or div with a unique ID for formatting and include header information inside</p> <ul> <li> <strong>Content section</strong> - Will consist of 2 areas <strong>side-by-side</strong> on the page (order is your choice). You can use CSS Grid for the layout or other formatting of your choice.</li> </ul> <p><strong>Output area to list courses</strong> (left panel) - Make the entire area a section or a div and give it a unique ID. This will make it easer for use in the Grid Area and for formatting.</p> <ul> <li>Include 4 buttons horizontally across area to be used to display term courses (button text your choice; ex. Term 1)</li> <li>Give each button a unique ID so jQuery can be used to call the click event</li> <li>Create an empty section or div with a unique id and a class for CSS formatting; this is the area where Term information will display based on specific button selected</li> <li>Change font-family and color</li> <li>Create click events for each individual button <strong>using jQuery</strong> that will call a separate function and pass in the term selected (ex. Term 1 button will pass in 1 as the argument)</li> <li>The function will use the passed in term argument to display the correct header from the Program/Term array (Example: CP for Term One)</li> <li>Under the header, a list of paragraphs will be created to list courses for the Term selected only with data coming from the array created</li> <li>Format: Course: TypeCode Image</li> </ul> <ul> <li>On start-up, call this function passing in "1" so the first term classes will display on site load</li> <li><em>NOTE: Images should be small (think icon size). You can use the width attribute in the tag</em></li> <li> <em>NOTE: You</em> <strong><em>MUST</em></strong> <em>use Template Literal to build the output and</em> <strong><em>For/Of</em></strong> <em>loop MUST be used</em> </li> <li> <strong>CSS</strong> for this entire area:</li> <li>Add a background colour and center all data</li> </ul> <p><strong>Button/Link area</strong> (right panel) - Make the entire area a section or a div and give it a unique ID. This will make it easier to use in the Grid Area and for formatting.</p> <ul> <li>Include a button that will use jQuery to toggle a new Class formatting for the list in the left panel (think <em>toggleClass</em>). Make sure the button text states clearly what the button is doing.</li> <li>Change the font family and color (noticeably different from original CSS) on click</li> <li>Include a button that when clicked will highlight any item in the term list that includes PROG Make sure the button text states clearly what the button is doing.</li> <li><em>NOTE: Highlight can be doing by simply changing the background and text colors</em></li> <li>Include an anchor tag that displays your personal image plus text to tell the user to click to go to the 2nd page.</li> <li> <strong>CSS</strong> for the Button area:</li> <li>Round the edges of the image within the anchor tag (border-radius)</li> <li>Add a background colour and center all data</li> <li> <strong>Footer section</strong> - Displays on load using jQuery (Hint: Include in $(document).ready(function() {}); )</li> </ul> <p>Login: <em>Your Login Name /</em> Campus: <em>Your Campus /</em> Program: <em>Your Program</em></p> <ul> <li>All personal data <strong>MUST</strong> be pulled from the variables populated from JSON/Local Storage.</li> <li>Template Literal <strong>MUST</strong> be used to build output string.</li> <li>Labels before data MUST be included</li> </ul> <p>MUST include some formatting for the footer area (your choice) so you can include the formatting on the tag used or create a section or div with a unique ID for formatting and include footer information inside</p> <p><strong>2nd page</strong></p> <ul> <li>Script setup and start-up: On document load <em>(you will need a separate .js file for this page that includes a $(document).ready(function(){});</em>)</li> </ul> <p>Declare <strong>variables</strong> to hold all your personal information (saved in local storage)</p> <p>Pull all your personal data from <strong>local storage</strong> into the declared variables</p> <p>Display all your personal data in decreasing header tags (h1 -> h2 -> h3 > h4 > h5)</p> <ul> <li>You can create the header tags in the HTML and then populate in the .js file OR you can build the header lines completely in the .js file</li> <li>Template Literal MUST be used to build output</li> </ul> <p>Include your name in an h1 tag using descriptive text (ex. My name is ...)</p> <p>Include your student number in an h2 tag with descriptive text</p> <p>Include your login name in an h3 tag with descriptive text</p> <p>Include your campus name in an h4 tag with descriptive text</p> <p>Include your program name in an h5 tag with descriptive text</p> <p>Add your image (included in the images folder)</p> <p>Must use <strong>jQuery CSS formatting</strong> to include at least 2 formats for each header line</p> <ul> <li>Hints: color, font-style, text-decoration, font-variant, font-family, font-variant, etc.</li> </ul> <p>Include a <strong>background colour</strong> for the entire page and center all lines on the page</p> <ul> <li>All this can be done in the head tag () for this page or create a separate CSS file.</li> <li><em>Try using a radial gradient for a nice background colour</em></li> </ul> <p>Include a <strong>Back Button</strong> that will return to the first page (your choice of where and how it looks)</p> </p> </div> <div class="question-answer-divider"></div> <section class="answerHolder" itemscope itemtype="http://schema.org/Answer"> <div class="answerHolderHeader"> <h2>Step by Step Solution</h2> <div class="answerReviews"> <div class="starIcon"> </div> </div> </div> <div class="questionProperties"> <p>There are 3 Steps involved in it</p> <div class="cart-flex"> <div class="cart cart1"> 1 Expert Approved Answer </div> </div> </div> <div class="step org_answer"> <span class="view_solution_btn view-solution-btn-cursor"> <strong class="step-heading step-1">Step: 1 <span>Unlock <i class="fa-solid fa-lock"></i></span></strong> </span> <img src="https://www.solutioninn.com/includes/images/document_product_info/blur-text-image.webp" class="blured-ans-image" width="759" height="271" alt="blur-text-image" decoding="async" fetchpriority="high"> <div class="step1Popup"> <span class="heading">Question Has Been Solved by an Expert!</span> <p>Get step-by-step solutions from verified subject matter experts</p> <button class="view_solution_btn step1PopupButton">View Solution</button> </div> </div> <div class="step"> <span class="view_solution_btn view-solution-btn-cursor"> <strong class="accordion step-heading">Step: 2 <span>Unlock <i class="fa-solid fa-lock"></i></span></strong> </span> </div> <div class="step"> <span class="view_solution_btn view-solution-btn-cursor"> <strong class="accordion step-heading">Step: 3 <span>Unlock <i class="fa-solid fa-lock"></i></span></strong> </span> </div> </section> <section class="relatedQuestion"> <h2>Students Have Also Explored These Related Databases Questions!</h2> <div class="relatedQuestionSliderHolder"> <div class="relatedQuestionCart "> <p class="heading">Q: </p> <a class="relatedQuestionText" href="/study-help/questions/please-post-all-files-including-htmlcss-and-javascript-i-need-23285361" > Please post all files including HTML,CSS and javascript. I need it tomorrow. Thank you. This assignment will be used to test your knowledge of JavaScript, Local Storage and jQuery Selectors and... </a> </div> <div class="relatedQuestionCart "> <p class="heading">Q: </p> <a class="relatedQuestionText" href="/study-help/questions/create-a-mobile-web-site-note-create-a-new-folder-23287168" > Create a mobile web site (Note: Create a new folder to hold all your files/folders). You will need to include: o index.html o Links: Link to jquery.js Link to your js script file Link to your... </a> </div> <div class="relatedQuestionCart "> <p class="heading">Q: </p> <a class="relatedQuestionText" href="/study-help/questions/create-a-mobile-web-site-note-create-a-new-folder-12656843" > Create a mobile web site (Note: Create a new folder to hold all your files/folders). You will need to include: O o index.html All necessary links for jQuery, your JS file, and your CSS file Updates:... </a> </div> <div class="relatedQuestionCart "> <p class="heading">Q: </p> <a class="relatedQuestionText" href="/study-help/questions/assignment-1-10-this-assignment-will-be-used-to-test-13675634" > Assignment #1 (10%) This assignment will be used to test your knowledge of JavaScript, Local Storage, jQuery Selectors and Actions, and simple JSON retrieval. Follow all details carefully and be sure... </a> </div> <div class="relatedQuestionCart "> <p class="heading">Q: </p> <a class="relatedQuestionText" href="/study-help/questions/please-do-this-problem-asap-im-stuck-with-this-whole-13798635" > please do this problem ASAP. I'm stuck with this whole problem. This assignment will be used to test your knowledge of JavaScript, Local Storage, jQuery Selectors and Actions, and simple ISON... </a> </div> <div class="relatedQuestionCart "> <p class="heading">Q: </p> <a class="relatedQuestionText" href="/study-help/questions/create-a-mobile-web-site-note-create-a-new-folder-23291770" > Create a mobile web site (Note: Create a new folder to hold all your files/folders). You will need to include: index.html o Links: Link to jquery.js Link to your js script file Link to your... </a> </div> <div class="relatedQuestionCart "> <p class="heading">Q: </p> <a class="relatedQuestionText" href="/study-help/questions/create-a-mobile-web-site-note-create-a-new-folder-1017847" > Create a mobile web site (Note: Create a new folder to hold all your files/folders). You will need to include: index.html o All necessary links for jQuery, your JS file, and your CSS file o Updates:... </a> </div> <div class="relatedQuestionCart "> <p class="heading">Q: </p> <a class="relatedQuestionText" href="/study-help/questions/this-assignment-will-be-used-to-test-your-knowledge-of-7723030" > This assignment will be used to test your knowledge of native JavaScript, Local Storage and simple JSON retrieval. Follow all details carefully and be sure to follow instructions for submitting your... </a> </div> <div class="relatedQuestionCart "> <p class="heading">Q: </p> <a class="relatedQuestionText" href="/study-help/questions/please-answer-correctly-for-guranteed-upvoting-last-time-it-was-13395480" > Please answer correctly for guranteed upvoting!! Last time it was incorrectly answered SYST24444 Assignment \#1 Assignment \#1 (10\%) This assignment will be used to test your knowledge of native... </a> </div> <div class="relatedQuestionCart "> <p class="heading">Q: </p> <a class="relatedQuestionText" href="/study-help/questions/upvoting-guranteed-for-correct-answer-syst24444-assignment-1-assignment-1-10379408" > Upvoting guranteed for correct answer!! SYST24444 Assignment \#1 Assignment \#1 (10\%) This assignment will be used to test your knowledge of native JavaScript, Local Storage and simple JSON... </a> </div> <div class="relatedQuestionCart "> <p class="heading">Q: </p> <a class="relatedQuestionText" href="/study-help/questions/ahlia-co-specializes-in-the-production-of-a-range-of-276485" > Ahlia Co specializes in the production of a range of air conditioning appliances for industrial premises. It is about to launch a new product, the 'Energy Buster', a unique air conditioning unit... </a> </div> <div class="relatedQuestionCart "> <p class="heading">Q: </p> <a class="relatedQuestionText" href="/study-help/questions/at-yearend-2525-the-company-has-total-assets-of-6900-financed-by-155446" > At year-end 2525 the company has Total assets of $6,900 financed by Debt of $3,200 and Stockholders equity of $3,700 . For 180 common shares outstanding, the equity price-to-book ratio at year-end... </a> </div> <div class="relatedQuestionCart "> <p class="heading">Q: </p> <a class="relatedQuestionText" href="/study-help/labor-economic/define-and-list-both-explicit-and-implicit-costs-associated-with-3028106" > Define and list both explicit and implicit costs associated with your taking this class. </a> </div> <div class="relatedQuestionCart "> <p class="heading">Q: </p> <a class="relatedQuestionText" href="/study-help/questions/ct-corp-comprehensive-question-canadian-tire-corporation-limited-canadian-15961854" > CT Corp Comprehensive Question Canadian Tire Corporation, Limited ( Canadian Tire ) is a family of companies that includes a retail segment and a financial services division, among others. The retail... </a> </div> <div class="relatedQuestionCart "> <p class="heading">Q: </p> <a class="relatedQuestionText" href="/study-help/business-communication-essentials/technology-the-owner-of-your-company-recently-purchased-two-pairs-2117811" > Technology. The owner of your company recently purchased two pairs of season tickets for the local symphony orchestra concerts. He will retain one pair of tickets but make the other available to... </a> </div> <div class="relatedQuestionCart "> <p class="heading">Q: </p> <a class="relatedQuestionText" href="/study-help/business-communication-essentials/on-july-1-you-relocated-your-business-from-one-detroit-2117802" > On July 1, you relocated your business from one Detroit suburb to another. A month prior to your move, you phoned your security system provider and notified its representative to cancel your service... </a> </div> <div class="relatedQuestionCart "> <p class="heading">Q: </p> <a class="relatedQuestionText" href="/study-help/business-communication-essentials/technology-brenda-durwood-one-of-your-employees-and-president-of-2117798" > Technology. Brenda Durwood, one of your employees and president of the Woodland Ski and Snowboard Club,has requested permission to hold the clubs annual Gear Swap fund-raiser in the company parking... </a> </div> </div> <nav class="navigationButtons"> <a class="previousQuestionButton" href="/study-help/questions/treat-the-file-as-image-in-raw-format-rows-are-12570966">Previous Question</a> <a class="nextQuestionButton" href="/study-help/questions/question-11-3-points-if-tn-3n-7-12570968">Next Question</a> </nav> </section> </main> <aside class="expertRight"> <section class="relatedBook" style="margin-bottom:40px; width: 100%;" > <div class="bookHolder" > <div class="relatedBookHeading" > <h2 class="heading">Recommended Textbook</h2> </div> <div class="bookMainInfo" > <div class="bookImage" style="width: 100px !important; min-width: 100px; flex-shrink: 0; margin-right: 20px;"> <a href="/textbooks/genomes-browsers-and-databases-data-mining-tools-for-integrated-genomic-databases-1st-edition-978-0521711326-177360"> <img src="https://dsd5zvtm8ll6.cloudfront.net/si.question.images/book_images/2024/01/6598e30c6db40_4126598e30c67140.jpg" width="100" height="131" alt="Genomes Browsers And Databases Data Mining Tools For Integrated Genomic Databases" loading="lazy" style="width: 100px !important;"> </a> </div> <div class="bookInfo" style="text-align: left;"> <span class="bookTitle" style="text-align: left;"> <a href="/textbooks/genomes-browsers-and-databases-data-mining-tools-for-integrated-genomic-databases-1st-edition-978-0521711326-177360" style="text-align: left;"> Genomes Browsers And Databases Data Mining Tools For Integrated Genomic Databases </a> </span> <div class="bookMetaInfo" style="text-align: left;"> <p class="bookAuthor" style="text-align: left;"> <b>Authors:</b> <span>Peter Schattner</span> </p> <p class="bookEdition" style="text-align: left;"> 1st Edition </p> <p class="bookEdition" style="text-align: left;"> 0521711320, 978-0521711326 </p> </div></div></div> </div> </section> <div class="post-question-section"> <div class="description-question-section"> <span class="post-question-section-title">Ask a Question and Get Instant Help!</span> </div> <div class="text-area-post-question"> <form action="/study-help/post-question?ref=search" method="post" enctype="multipart/form-data"> <textarea rows="4" class="form-control form-posting-margin" name="textarea-question-content" id="textarea-question-content" placeholder="Type Your Question ...."></textarea> <button type="submit" class="btn btn-sm btn-submit-post-question text-center">Get Answer</button> </form> </div> </div> </aside> </div> </div> <div class="promo items-center justify-center hidden"> <div class="app_promo"> <span class="app_promo_dismiss"> <i class="fa-solid fa-x"></i> </span> <div class="app-button"> <div class="image-wrapper"> <img width="30" height="30" src="https://www.solutioninn.com/includes/images/rewamp/common/mobile-app-logo.png" decoding="async" fetchpriority="high" alt="SolutionInn App Logo"> <strong>Study Help</strong> </div> <button class="app_promo_action redirection" data-question-open-url='q_id=12570967&q_type=2'> Open in App </button> </div> </div> </div> </div> </div> <div class="blank-portion"></div> <footer> <div class="container footerHolder"> <div class="footerLinksFlex"> <div class="footerLinksCol col-md-3 col-lg-3 col-sm-6 col-6"> <p>Services</p> <ul> <li><a href="/site-map">Sitemap</a></li> <li><a href="/fun/">Fun</a></li> <li><a href="/study-help/definitions">Definitions</a></li> <li><a href="/tutors/become-a-tutor">Become Tutor</a></li> <li><a href="/books/used-textbooks">Used Textbooks</a></li> <li><a href="/study-help/categories">Study Help Categories</a></li> <li><a href="/study-help/latest-questions">Recent Questions</a></li> <li><a href="/study-help/questions-and-answers">Expert Questions</a></li> <li><a href="/clothing">Campus Wear</a></li> <li><a href="/sell-books">Sell Your Books</a></li> </ul> </div> <div class="footerLinksCol col-md-3 col-lg-3 col-sm-6 col-6"> <p>Company Info</p> <ul> <li><a href="/security">Security</a></li> <li><a href="/copyrights">Copyrights</a></li> <li><a href="/privacy">Privacy Policy</a></li> <li><a href="/conditions">Terms & Conditions</a></li> <li><a href="/solutioninn-fee">SolutionInn Fee</a></li> <li><a href="/scholarships">Scholarship</a></li> <li><a href="/online-quiz">Online Quiz</a></li> <li><a href="/study-feedback">Give Feedback, Get Rewards</a></li> </ul> </div> <div class="footerLinksCol col-md-3 col-lg-3 col-sm-6 col-6"> <p>Get In Touch</p> <ul> <li><a href="/about-us">About Us</a></li> <li><a href="/support">Contact Us</a></li> <li><a href="/career">Career</a></li> <li><a href="/jobs">Jobs</a></li> <li><a href="/support">FAQ</a></li> <li><a href="https://www.studentbeans.com/en-us/us/beansid-connect/hosted/solutioninn" target="_blank" rel="noopener nofollow">Student Discount</a></li> <li><a href="/campus-ambassador-program">Campus Ambassador</a></li> </ul> </div> <div class="footerLinksCol col-md-3 col-lg-3 col-sm-6 col-12"> <p>Secure Payment</p> <div class="footerAppDownloadRow"> <div class="downloadLinkHolder"> <img src="https://dsd5zvtm8ll6.cloudfront.net/includes/images/rewamp/common/footer/secure_payment_method.png" class="img-fluid mb-3" width="243" height="28" alt="payment-verified-icon" loading="lazy"> </div> </div> <p>Download Our App</p> <div class="footerAppDownloadRow"> <div class="downloadLinkHolder mobileAppDownload col-md-6 col-lg-6 col-sm-6 col-6 redirection" data-id="1"> <img style="cursor:pointer;" src="https://dsd5zvtm8ll6.cloudfront.net/includes/images/rewamp/home_page/google-play-svg.svg" alt="SolutionInn - Study Help App for Android" width="116" height="40" class="img-fluid mb-3 " loading="lazy"> </div> <div class="downloadLinkHolder mobileAppDownload col-md-6 col-lg-6 col-sm-6 col-6 redirection" data-id="2"> <img style="cursor:pointer;" src="https://dsd5zvtm8ll6.cloudfront.net/includes/images/rewamp/home_page/apple-store-download-icon.svg" alt="SolutionInn - Study Help App for iOS" width="116" height="40" class="img-fluid mb-3" loading="lazy"> </div> </div> </div> </div> </div> <div class="footer-bottom"> <p>© 2026 SolutionInn. All Rights Reserved</p> </div></footer> <script> window.addEventListener("load",function(){jQuery(document).ready(function(t){ // Clarity tracking (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "sjv6tuxsok"); // Helper to read a cookie by name function getCookie(name) { return document.cookie .split('; ') .map(v => v.split('=')) .reduce((acc, [k, val]) => (k === name ? decodeURIComponent(val || '') : acc), ''); } // Read cookies var si = getCookie('si_u_id'); var uid = getCookie('u_id'); var zen = getCookie('zenid'); // Send to Clarity if (si) clarity('set', 'si_u_id', si); if (uid) clarity('set', 'u_id', uid); if (zen) clarity('set', 'zenid', zen); clarity('set', 'ip_address', '216.73.216.28'); t.ajax({type:"POST",url:"/",data:{trackUserActivity:!0,reqUri:document.URL,referer:document.referrer},success:function(t){}})})},!1),window.addEventListener("load",function(){jQuery(document).ready(function(t){t.ajax({type:"POST",url:"/",data:{insertCrawler:!0,reqUri:document.URL,parseTime:"0.056",queryTime:"0.01654768548584",queryCount:"30"},success:function(t){}})})},!1),window.addEventListener("load",function(){jQuery(document).ready(function(){function t(t="",n=!1){var i="itms-apps://itunes.apple.com/app/id6462455425",e="openApp://action?"+t;isAndroid()?(setTimeout(function(){return window.location="market://details?id=com.solutioninn.studyhelp",!1},25),window.location=e):isIOS()?(setTimeout(function(){return window.location=i,!1},25),window.location=e):(i="https://apps.apple.com/in/app/id6462455425",n&&(i="https://play.google.com/store/apps/details?id=com.solutioninn.studyhelp"),window.open("about:blank","_blank").location.href=i)}jQuery("#appModal").modal("show"),jQuery(".download-app-btn").click(function(){t(jQuery(this).attr("data-question-open-url"))}),jQuery(".redirection").click(function(){var n=jQuery(this).attr("data-question-open-url"),i=jQuery(this).attr("data-id");void 0!=n?1==i?t(n,!0):t(n,!1):1==i?t("",!0):t("",!1)}),jQuery(".app-notification-close").click(function(){jQuery(".app-notification-section").css("visibility","hidden");var t=new FormData;t.append("hide_notification",!0),jQuery.ajax({type:"POST",url:"/",data:t,cache:!1,contentType:!1,processData:!1,beforeSend:function(){},success:function(t){location.reload()}})})})},!1); </script> </body> </html>