Great Deal! Get Instant $10 FREE in Account on First Order + 10% Cashback on Every Order Order Now

Web Development COS10005 – Web Development XXXXXXXXXXLast Updated: 12th October 2020 Page 1 Department of Foundation and Pathways Swinburne University of Technology COS10024 – Web Development...

1 answer below »
Web Development
COS10005 – Web Development XXXXXXXXXXLast Updated: 12th October 2020 Page 1
Department of Foundation and Pathways
Swinburne University of Technology

COS10024 – Web Development XXXXXXXXXXWeek 9 - Tutorial Activity 2
Lab 9 – JavaScript DOM

Aims:
• To practice how to create a form data checking/validation function for a HTML form using JavaScript
while maintaining clear separation of HTML, CSS and JS files.
• To review JavaScript functions and control structure
• To gain the skills and knowledge to complete Assignment 2
Task 1: Create Form Validation using JavaScript (2 marks)
Description:
Again, we are going to start with a registration form, and then define and add a client-side form data
validation function using JavaScript. In this lab, we will be using the JavaScript alert function to display
the e
or message. As an extension, you may want to display the e
or message within the web page
instead of using
alert.
Remember to design the form interaction carefully before you start coding, i.e., when and what to do
in response to what event.
Design:
Design starts with discussion and paper drawings. Ensure this process is completed before
implementation.
Step 1: Form (HTML and CSS)
1.1 The design will be adapted from the form presented in Figure 1. For this lab, the e
or messages
will be displayed using the JavaScript alert function, so no CSS solution will be needed. However, if
you do decide to display e
or messages within the web page, you will need to design the
interaction. You are encouraged to investigate and attempt the later approach.
COS10005 – Web Development XXXXXXXXXXLast Updated: 12th October 2020 Page 2
Step 2: (JavaScript)
2.1 Identify which input fields in the form should be evaluated and what rules should apply.
Answer: For this task, we need to evaluate all input fields. The rules are:
(1) All input fields must not be empty;
(2) User ID must contain at one ‘@’ symbol to be a valid email address; (3)
Password and retype password must have the same value; and
(4) Name must be letters and spaces only.
Implementation:
Implementation requires the creation and revision of HTML, CSS and JavaScript files.
Step 3: Directory Set Up
3.1 Create a new folder ‘lab09’ under the unit folder on the mercury server ~/COS10005/www/htdocs.
This is the directory where all files will be uploaded.
Step 4:
4.1 Download lab_09_files.zip from the Canvas. Use the files in the zip file as templates for this lab.
Step 5: HTML Creation
5.1 Using NotePad++ (or SubLime Text for Mac users), open file regform2.html.
Review the HTML and complete the code.
For your convenience, the basic code and additional code is shown below. Make sure you
understand the added code.
!DOCTYPE html>
html lang="en">
head>




(1)link to desktop CSS file______________________
(2)link to JavaScript data validation file_______________
Web Development Registration Form<br />title> <br />head> <br />ody> <br />Registration Form <br />Account Information ----------------------------------------- <br />User ID sam<br />ple <br />Password <br />R<br />e<br />Re-type Password <br />User Information<br />--------------------------------------------- <br />Name <br />Gender O Male O Female <br />Test Register <br />Figure 1. Form Mock Up <br />Format <br />Inco<br />ect <br /> <br />In the page solution: <br />An individual <br />m <br />ess<br />age would be displayed i n <br />twebpag<br />e i <br />t<br />h<br />d<br />aentered was inco<br />ect <br />COS10005 – Web Development XXXXXXXXXXLast Updated: 12th October 2020 Page 3 <br /> <form (3) enable JavaScript to uniquely identify the form_ method="post" <br />action="http:<br />mercury.swin.edu.au/it000000/cos10005/formtest.php"> <br /> <fieldset> <br /> <legend>Account Information<br />legend> <br /> <div> <br /> <label for="sid">User ID<br />label> <br /> <input id="sid" type="text" name="sid" <br /> <br /> <br />div> <br /> <div> <br /> <label for="pwd1">Password<br />label> <br /> <input id="pwd1" type="password" name="pwd1" <br /> <br /> <br />div> <br /> <div> <br /> <label for="pwd2">Retype Password<br />label> <br /> <input id="pwd2" type="password" name="pwd2" <br /> <br /> <br />div> <br /> <br />fieldset> <br /> <fieldset> <br /> <legend>User Information<br />legend> <br /> <div> <br /> <label for="uname">Name<br />label> <br /> <input id="uname" type="text" name="uname" <br /> <br /> <br />div> <br /> <div> <br /> <fieldset> <br /> <legend>Gende<br />legend> <br /> <input id="genm" type="radio" name="gender" value="M" <br /> <br /> <label for="genm">Male<br />label> <br /> <input id="genf" type="radio" name="gender" value="F" <br /> <br /> <label for="genf">Female<br />label> <br /> <br />fieldset> <br /> <br />div> <br /> <br />fieldset> <br /> <div> <br /> <input type="submit" value="Test Registration Form" <br /> <br /> <br />div> <br /> <br />form> <br />ody> <br />html<br />Discussion <br />(1) link to desktop CSS file <br /> Answer: <link href="desktop.css" rel="stylesheet" type="text/css" <br />(2) link to JavaScript data validation file <br /> Answer: <script src="validation.js"<br />script<br />(3) add a form identifier, so we can easily reference the form object <br /> Answer: id="regform"<br />Step 6: CSS Creation (for the form) <br />6.1 Open file desktop.css, review the CSS and the questions below. <br />For your convenience, the code is shown below: <br />COS10005 – Web Development XXXXXXXXXXLast Updated: 12th October 2020 Page 4 <br /> <br />Discussion <br />(4) What happens if “border:none” is removed from the fieldset declaration? <br />COS10005 – Web Development XXXXXXXXXXLast Updated: 12th October 2020 Page 5 <br />Answer: The input for gender will be enclosed in a fieldset box, the word "Gender" – the <br />legend - will be in the box, not in its default position along the top left of the box.<br />(5) Why is there a blank space and not a comma between these selectors? However, in <br />a previous lab we used a comma, for example <br /> <br />h1, h2, p { <br />color : blue; <br />} <br />Answer: A blank space represents a contextual selector. This means that the style is to be <br />applied only to HTML elements that are descendants of the class "radioinput". <br />Note that when the border was set to none (as was asked in question 6) the <br />fieldset for Account and User Information still retains its border. <br />"Comma" represents a grouping selector.<br />This means that the style rule is to be applied to all to these HTML elements. In <br />the above grouping example, the color:blue will be applied to all h1, all h2 and <br />all p, unless it is ove<br />idden by another later CSS declaration.<br />Step 7: JavaScript Creation (for the form data validation)<br />7.1 Open the text file validation.js, review the JavaScript and the questions below. For your convenience, <br />the basic code and additional code is shown below: <br />COS10005 – Web Development XXXXXXXXXXLast Updated: 12th October 2020 Page 6<br /> <br />COS10005 – Web Development XXXXXXXXXXLast Updated: 12th October 2020 Page 7<br />(6) The property value has been used to access the text input, in the previous four line of code. <br />What property needs to be used to access the radio input values? <br />Answer: The property is checked, thus to obtain the value stored in a radio input, the following <br />JavaScript code needs to be added: <br /> var genm = document.getElementById("genm").checked; <br />var genf = document.getElementById("genf").checked;<br />(7) How would you check if each input field is empty? <br /> Answer: Add the following JavaScript Code: <br /> XXXXXXXXXXif (sid == "") { <br /> e<br />Msg += "User ID cannot be empty.\n"; \n will create a ‘new line’ code in the message, <br />that <br /> } will be displayed in the <br /> if (pwd1 == "") { alert <br /> e<br />Msg += "Password cannot be empty.\n"; <br /> } <br /> if (pwd2 == "") { <br /> e<br />Msg += "Retype password cannot be empty.\n"; <br /> } <br /> if (uname == "") { e<br />Msg += "User name <br />cannot be empty.\n"; <br /> } <br /> if ((genm == "")&&(genf == "")) { <br /> e<br />Msg += "A gender must be selected.\n"; <br /> }<br />Note: You need to test all options in a radio input. In this case, both genm and genf must be tested.<br />(8) How would you check if an input field contains an @ symbol? <br /> Answer: Add the following JavaScript code: <br /> XXXXXXXXXXif (sid.indexOf('@') == 0 ) { e<br />Msg += "User ID <br />cannot start with an @ symbol.\n"; <br /> } <br /> if (sid.indexOf('@') < 0 ) { e<br />Msg += "User ID <br />must contain an @ symbol.\n"; <br /> }<br />Note: This is simplistic way to check if the input is an email address. A better solution would be to use a <br />egular expression.<br />An example of a regular expression is included in this lab, to check if the name input <br />field only contains only letters and/or spaces. See the <div class="row txtSpac"> <div class='attachdoc'><a href='/attached-files/lab09instructionlabtask2-viqyay35.pdf?did=1' download='lab09instructionlabtask2-viqyay35.pdf' target='_blank'><span class='glyphicon glyphicon-download-alt' aria-hidden='true'></span> lab09instructionlabtask2-viqyay35.pdf </a><a href='/attached-files/lab09-wofxfswl.zip?did=1' download='lab09-wofxfswl.zip' target='_blank'><span class='glyphicon glyphicon-download-alt' aria-hidden='true'></span> lab09-wofxfswl.zip </a></div> </div> </div> <script type='application/ld+json'>{"@context":"http://schema.org","@type":"QAPage","mainEntity":{"@type":"Question","name":"Web DevelopmentCOS10005 – Web Development XXXXXXXXXXLast Updated: 12th October 2020 Page 1 ...","author":{"@type":"Person","name":"Anonymous"},"dateCreated":"2021-12-17T08:08:09","text":"Web DevelopmentCOS10005 – Web Development XXXXXXXXXXLast Updated: 12th October 2020 Page 1 Department of Foundation and Pathways Swinburne University of Technology COS10024 – Web Development XXXXXXXXXXWeek 9 - Tutorial Activity 2Lab 9 – JavaScript DOM Aims: • To practice how to create a form data checking/validation function for a HTML form using JavaScript while maintaining clear separation of HTML, CSS and JS files. • To review JavaScript functions and control structure • To gain the skills and knowledge to complete Assignment 2 Task 1: Create Form Validation using JavaScript (2 marks) Description: Again, we are going to start with a registration form, and then define and add a client-side form data validation function using JavaScript. In this lab, we will be using the JavaScript alert function to display the eor message. As an extension, you may want to display the eor message within the web page instead of using alert.Remember to design the form interaction carefully before you start coding, i.e., when and what to do in response to what event. Design: Design starts with discussion and paper drawings. Ensure this process is completed before implementation. Step 1: Form (HTML and CSS) 1.1 The design will be adapted from the form presented in Figure 1. For this lab, the eor messages will be displayed using the JavaScript alert function, so no CSS solution will be needed. However, if you do decide to display eor messages within the web page, you will need to design the interaction. You are encouraged to investigate and attempt the later approach.COS10005 – Web Development XXXXXXXXXXLast Updated: 12th October 2020 Page 2Step 2: (JavaScript) 2.1 Identify which input fields in the form should be evaluated and what rules should apply. Answer: For this task, we need to evaluate all input fields. The rules are: (1) All input fields must not be empty; (2) User ID must contain at one ‘@’ symbol to be a valid email address; (3) Password and retype password must have the same value; and (4) Name must be letters and spaces only. Implementation: Implementation requires the creation and revision of HTML, CSS and JavaScript files. Step 3: Directory Set Up 3.1 Create a new folder ‘lab09’ under the unit folder on the mercury server ~/COS10005/www/htdocs. This is the directory where all files will be uploaded. Step 4: 4.1 Download lab_09_files.zip from the Canvas. Use the files in the zip file as templates for this lab. Step 5: HTML Creation 5.1 Using NotePad++ (or SubLime Text for Mac users), open file regform2.html. Review the HTML and complete the code. For your convenience, the basic code and additional code is shown below. Make sure you understand the added code. !DOCTYPE html> html lang=\"en\"> head> (1)link to desktop CSS file______________________ (2)link to JavaScript data validation file_______________ Web Development Registration Formtitle> head> ody> Registration Form Account Information ----------------------------------------- User ID sample Password ReRe-type Password User Information--------------------------------------------- Name Gender O Male O Female Test Register Figure 1. Form Mock Up Format Incoect In the page solution: An individual m essage would be displayed i n twebpage i thdaentered was incoect COS10005 – Web Development XXXXXXXXXXLast Updated: 12th October 2020 Page 3 action=\"http:mercury.swin.edu.au/it000000/cos10005/formtest.php\"> Account Informationlegend> User IDlabel> div> Passwordlabel> div> Retype Passwordlabel> div> fieldset> User Informationlegend> Namelabel> div> Gendelegend> Malelabel> Femalelabel> fieldset> div> fieldset> div> form> ody> htmlDiscussion (1) link to desktop CSS file Answer: (2) link to JavaScript data validation file Answer: script(3) add a form identifier, so we can easily reference the form object Answer: id=\"regform\"Step 6: CSS Creation (for the form) 6.1 Open file desktop.css, review the CSS and the questions below. For your convenience, the code is shown below: COS10005 – Web Development XXXXXXXXXXLast Updated: 12th October 2020 Page 4 Discussion (4) What happens if “border:none” is removed from the fieldset declaration? COS10005 – Web Development XXXXXXXXXXLast Updated: 12th October 2020 Page 5 Answer: The input for gender will be enclosed in a fieldset box, the word \"Gender\" – the legend - will be in the box, not in its default position along the top left of the box.(5) Why is there a blank space and not a comma between these selectors? However, in a previous lab we used a comma, for example h1, h2, p { color : blue; } Answer: A blank space represents a contextual selector. This means that the style is to be applied only to HTML elements that are descendants of the class \"radioinput\". Note that when the border was set to none (as was asked in question 6) the fieldset for Account and User Information still retains its border. \"Comma\" represents a grouping selector.This means that the style rule is to be applied to all to these HTML elements. In the above grouping example, the color:blue will be applied to all h1, all h2 and all p, unless it is oveidden by another later CSS declaration.Step 7: JavaScript Creation (for the form data validation)7.1 Open the text file validation.js, review the JavaScript and the questions below. For your convenience, the basic code and additional code is shown below: COS10005 – Web Development XXXXXXXXXXLast Updated: 12th October 2020 Page 6 COS10005 – Web Development XXXXXXXXXXLast Updated: 12th October 2020 Page 7(6) The property value has been used to access the text input, in the previous four line of code. What property needs to be used to access the radio input values? Answer: The property is checked, thus to obtain the value stored in a radio input, the following JavaScript code needs to be added: var genm = document.getElementById(\"genm\").checked; var genf = document.getElementById(\"genf\").checked;(7) How would you check if each input field is empty? Answer: Add the following JavaScript Code: XXXXXXXXXXif (sid == \"\") { eMsg += \"User ID cannot be empty.\\n\"; \\n will create a ‘new line’ code in the message, that } will be displayed in the if (pwd1 == \"\") { alert eMsg += \"Password cannot be empty.\\n\"; } if (pwd2 == \"\") { eMsg += \"Retype password cannot be empty.\\n\"; } if (uname == \"\") { eMsg += \"User name cannot be empty.\\n\"; } if ((genm == \"\")&&(genf == \"\")) { eMsg += \"A gender must be selected.\\n\"; }Note: You need to test all options in a radio input. In this case, both genm and genf must be tested.(8) How would you check if an input field contains an @ symbol? Answer: Add the following JavaScript code: XXXXXXXXXXif (sid.indexOf('@') == 0 ) { eMsg += \"User ID cannot start with an @ symbol.\\n\"; } if (sid.indexOf('@') Msg += \"User ID must contain an @ symbol.\\n\"; }Note: This is simplistic way to check if the input is an email address. A better solution would be to use a egular expression.An example of a regular expression is included in this lab, to check if the name input field only contains only letters and/or spaces. See the","acceptedAnswer":{"@type":"Answer","url":"https://www.topassignmentexperts.com/questions/can-you-help-me-with-this-lab-task-163127.html#pnlSolution","author":{"@type":"Person","name":"Ayush"},"dateCreated":"2021-12-19T03:44:15","text":"Assignment1/css.txt\r\n@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');\r\n@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,500&display=swap');\r\n* {\r\n\tbox-sizing: border-box;\r\n}\r\nbody {\r\n\t\r\n\tfont-family: 'Open Sans', sans-serif;\r\n\tdisplay: flex;\r\n\talign-items: center;\r\n\tjustify-content: center;\r\n\tmin-height: 100vh;\r\n\tmargin: 0;\r\n}\r\n.container {\r\n\tbackground-color: #fff;\r\n\tborder-radius: 5px;\r\n\tbox-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);\r\n\toverflow: hidden;\r\n\twidth: 400px;\r\n\tmax-width: 100%;\r\n}\r\n.header {\r\n\tborder-bottom: 1px solid #f0f0f0;\r\n\tbackground-color: #f7f7f7;\r\n\tpadding: 20px 40px;\r\n}\r\n.header h2 {\r\n\tmargin: 0;\r\n}\r\n.form {\r\n\tpadding: 30px 40px;\t\r\n}\r\n.form-control {\r\n\tmargin-bottom: 10px;\r\n\tpadding-bottom: 20px;\r\n\tposition: relative;\r\n}\r\n.form-control label {\r\n\tdisplay: inline-block;\r\n\tmargin-bottom: 5px;\r\n}\r\n.form-control input {\r\n\tborder: 2px solid #f0f0f0;\r\n\tborder-radius: 4px;\r\n\tdisplay: block;\r\n\tfont-family: inherit;\r\n\tfont-size: 14px;\r\n\tpadding: 10px;\r\n\twidth: 100%;\r\n}\r\n.form-control input:focus {\r\n\toutline: 0;\r\n\tborder-color: #777;\r\n}\r\n.form-control.success input {\r\n\tborder-color: #2ecc71;\r\n}\r\n.form-control.error input {\r\n\tborder-color: #e74c3c;\r\n}\r\n.form-control i {\r\n\tvisibility: hidden;","upvoteCount":143,"aggregateRating":4.35},"answerCount":1}}</script> </div> <div class="info"> <span class="solved" title="Solved"><em class="ico"></em> Answered Same Day</span> <span class="postedtime" title="Posted On"><em class="ico"></em> Dec 17, 2021</span> <span class='unit'><em class='ico'></em>COS10005</span> <span class='university'><em class='ico'></em>Swinburne University of Technology</span> </div> </div> <div class="clear"></div> <div id="pnlSolvedQuestionStatus"> <div id="pnlSolution" class="solutionsbox"> <h2>Solution <span class="bdr"></span></h2> <div class="expert-answered"> <b> <span class="expert-pic"></span> Ayush</b> answered on <b> Dec 19 2021</b> </div> <div class="rating-vote"> <div class="cont"> <span class='star'><span class='rating' style='width: 87%'></span></span> <span class="vote"><b> 143</b> Votes</span> </div> </div> <div class="soln-snippet"> Assignment1/css.txt<br />@import url('https:<br />fonts.googleapis.com/css?family=Muli&display=swap');<br />@import url('https:<br />fonts.googleapis.com/css?family=Open+Sans:400,500&display=swap');<br />* {<br />    box-sizing: border-box;<br />}<br />ody {<br />    <br />    font-family: 'Open Sans', sans-serif;<br />    display: flex;<br />    align-items: center;<br />    justify-content: center;<br />    min-height: 100vh;<br />    margin: 0;<br />}<br />.container {<br />    background-color: #fff;<br />    border-radius: 5px;<br />    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);<br />    overflow: hidden;<br />    width: 400px;<br />    max-width: 100%;<br />}<br />.header {<br />    border-bottom: 1px solid #f0f0f0;<br />    background-color: #f7f7f7;<br />    padding: 20px 40px;<br />}<br />.header h2 {<br />    margin: 0;<br />}<br />.form {<br />    padding: 30px 40px;    <br />}<br />.form-control {<br />    margin-bottom: 10px;<br />    padding-bottom: 20px;<br />    position: relative;<br />}<br />.form-control label {<br />    display: inline-block;<br />    margin-bottom: 5px;<br />}<br />.form-control input {<br />    border: 2px solid #f0f0f0;<br />    border-radius: 4px;<br />    display: block;<br />    font-family: inherit;<br />    font-size: 14px;<br />    padding: 10px;<br />    width: 100%;<br />}<br />.form-control input:focus {<br />    outline: 0;<br />    border-color: #777;<br />}<br />.form-control.success input {<br />    border-color: #2ecc71;<br />}<br />.form-control.e<br />or input {<br />    border-color: #e74c3c;<br />}<br />.form-control i {<br />    visibility:... </div> </div> <div class="pdf-solution"> <a href="javascript:void(0);" id="hypGetSolution" data-action="main_cta" data-requirelogin="true" class="download" data-category="Solved" data-label="163127" role="button" data-navigateurl="/myaccount/QuestionRequest.aspx?qid=163127" data-gaq="true">SOLUTION.PDF</a> </div> <div class="pdf-solution solnfixed"> <div class="cont"> <a href="javascript:void(0);" id="hypGetSolutionBottom" data-action="main_cta_bottom" data-requirelogin="true" class="download" data-category="Solved" data-label="163127" role="button" data-navigateurl="/myaccount/QuestionRequest.aspx?qid=163127" data-gaq="true">SOLUTION.PDF</a> <h2>Answer To This Question Is Available To Download</h2> </div> </div> </div> <div id="dvRecentQuestionList"> <div id="pnlRecentRelatedQuestionList"> <div class="rel-que"> <h2>Related Questions & Answers<span class="bdr"></span></h2> <ul> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/ucf-university-of-central-florida-cis-4004-web-based-information-technology-ass-3438830.html">UCF University of Central Florida CIS 4004 Web Based Information Technology Assignment 4 Due, Sunday, April XXXXXXXXXXfor 100% credit Monday, April 24, 2023 for 90% credit Tuesday, April 25,...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Apr 20, 2023</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/your-program-must-use-one-command-line-argument-the-filename-to-parse-which-wil-3438408.html">COMP 2150 — Assignment 4 COMP 2150 — Assignment 4 Term: Winter 2023 Due: April 12th, 2023 at 4:30pm Contents Introduction 2 Description 4 Input . . . . . . . . . . . . . . . . . . . . . . . . . ....</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Apr 06, 2023</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/the-assignment-instructions-with-example-output-is-in-the-attached-file-3438290.html">Bentley University Spring 2023 CS 213 The World Wide Web homework 5: benny’s burgers Benny runs a burger joint that sells a variety of gourmet burgers. Benny’s burgers are custom built from...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Apr 03, 2023</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/please-make-the-following-modifications-to-the-code1-prompt-for-max-numberinste-3436406.html">Please make the following modifications to the code: 1. Prompt for Max Number Instead of locking the game into a number between1and20, use theprompt()method to ask the user what the maximum number...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Feb 16, 2023</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/in-this-assignment-you-are-required-to-create-a-set-of-different-animal-objects-3435787.html">In this assignment you are required to create a set of different animal objects using constructorfunctions and Inheritance in JavaScript. The objects will – through the power of polymorphism– be able...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Jan 27, 2023</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/emgt100-introduction-to-engineering-programming-in-javascript-2-2019-university-3435733.html">EMGT100 Introduction to Engineering Programming in JavaScript 2 2019 University of Management and Technology CST 221. Programming in JavaScript Assignment 2 Instruction: You can find help...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Jan 25, 2023</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/using-thearchitectural-design-pattern-mvc-design-routes-for-restful-services-ex-3435625.html">Week 7: Routing Table Using the Architectural Design Pattern (MVC), design routes for restful services. Explain the application and each route. All you need is to explain each route (see lesson for...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Jan 21, 2023</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/i-would-like-to-create-a-webpage-with-a-ui-that-allows-the-user-to-search-for-a-3435473.html">I would like to create a webpage with a UI that allows the user to search for a dog by breed and populate a list of dogs available for adoption. This app will provide the user with the available dogs...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Jan 14, 2023</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/explainarchitectural-design-patternselect-a-type-ofarchitectural-design-pattern-3435464.html">Explain Architectural Design Pattern . S elect a type of Architectural Design Pattern ; explain why you selected that particular pattern type. Provide a sample code...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Jan 14, 2023</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/emgt100-introduction-to-engineering-programming-in-javascript-2-2019-university-3435461.html">EMGT100 Introduction to Engineering Programming in JavaScript 2 2019 University of Management and Technology CST 221. Programming in JavaScript Assignment 3 Instruction: Building upon...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Jan 13, 2023</span> </div> </li> </ul> <div class="clearfix"></div> <a id="hypMoreRelatedQuestion" class="moreque" href="/javascript-homework-help/">More Questions »</a> </div> </div> </div> </div> <div class="col-md-4"> <div class="submit-assignment"> <div id="dvQuestionContainer"> <div class="assignment-frm"> <div id="dvTitle"><h3>Submit New Assignment</h3></div> <div class="row"> <div class="col-xs-12 col-sm-6 col-md-6" id="dvSubject"> <div class="form-group"> <input name="ctl00$MainContent$QuestionBox$txtSubject" type="text" id="txtSubject" class="form-control" placeholder="Subject" /> <span class="help-block filled" id="spnSubjectName" style="display: none;"><span class="parsley-checkemailavailability">Please select subject</span></span> </div> </div> <div class="col-xs-12 col-sm-6 col-md-6" id="dvDeadLine"> <div class="form-group"> <input name="ctl00$MainContent$QuestionBox$txtDeadLine" type="text" readonly="readonly" id="txtDeadLine" class="form-control" placeholder="Deadline" /> <span class="help-block filled" id="spnDeadline" style="display: none;"><span class="parsley-checkemailavailability">Please select deadline for your assignment</span></span> </div> </div> </div> <div class="row"> <div class="col-xs-12 col-sm-6 col-md-6" id="dvNoOfPages"> <div class="form-group"> <select name="ctl00$MainContent$QuestionBox$ddlNoOfPages" id="ddlNoOfPages" class="form-control"> <option value="-1">Select No Of Pages</option> <option value="0">Not Applicable</option> <option value="1">Pages/Words: 1/250</option> <option value="2">Pages/Words: 2/500</option> <option value="3">Pages/Words: 3/750</option> <option value="4">Pages/Words: 4/1000</option> <option value="5">Pages/Words: 5/1250</option> <option value="6">Pages/Words: 6/1500</option> <option value="7">Pages/Words: 7/1750</option> <option value="8">Pages/Words: 8/2000</option> <option value="9">Pages/Words: 9/2250</option> <option value="10">Pages/Words: 10/2500</option> <option value="11">Pages/Words: 11/2750</option> <option value="12">Pages/Words: 12/3000</option> <option value="13">Pages/Words: 13/3250</option> <option value="14">Pages/Words: 14/3500</option> <option value="15">Pages/Words: 15/3750</option> <option value="16">Pages/Words: 16/4000</option> <option value="17">Pages/Words: 17/4250</option> <option value="18">Pages/Words: 18/4500</option> <option value="19">Pages/Words: 19/4750</option> <option value="20">Pages/Words: 20/5000</option> <option value="21">Pages/Words: 21/5250</option> <option value="22">Pages/Words: 22/5500</option> <option value="23">Pages/Words: 23/5750</option> <option value="24">Pages/Words: 24/6000</option> <option value="25">Pages/Words: 25/6250</option> <option value="26">Pages/Words: 26/6500</option> <option value="27">Pages/Words: 27/6750</option> <option value="28">Pages/Words: 28/7000</option> <option value="29">Pages/Words: 29/7250</option> <option value="30">Pages/Words: 30/7500</option> <option value="31">Pages/Words: 31/7750</option> <option value="32">Pages/Words: 32/8000</option> <option value="33">Pages/Words: 33/8250</option> <option value="34">Pages/Words: 34/8500</option> <option value="35">Pages/Words: 35/8750</option> <option value="36">Pages/Words: 36/9000</option> <option value="37">Pages/Words: 37/9250</option> <option value="38">Pages/Words: 38/9500</option> <option value="39">Pages/Words: 39/9750</option> <option value="40">Pages/Words: 40/10000</option> <option value="41">Pages/Words: 41/10250</option> <option value="42">Pages/Words: 42/10500</option> <option value="43">Pages/Words: 43/10750</option> <option value="44">Pages/Words: 44/11000</option> <option value="45">Pages/Words: 45/11250</option> <option value="46">Pages/Words: 46/11500</option> <option value="47">Pages/Words: 47/11750</option> <option value="48">Pages/Words: 48/12000</option> <option value="49">Pages/Words: 49/12250</option> <option value="50">Pages/Words: 50/12500</option> <option value="51">Pages/Words: 51/12750</option> <option value="52">Pages/Words: 52/13000</option> <option value="53">Pages/Words: 53/13250</option> <option value="54">Pages/Words: 54/13500</option> <option value="55">Pages/Words: 55/13750</option> <option value="56">Pages/Words: 56/14000</option> <option value="57">Pages/Words: 57/14250</option> <option value="58">Pages/Words: 58/14500</option> <option value="59">Pages/Words: 59/14750</option> <option value="60">Pages/Words: 60/15000</option> <option value="61">Pages/Words: 61/15250</option> <option value="62">Pages/Words: 62/15500</option> <option value="63">Pages/Words: 63/15750</option> <option value="64">Pages/Words: 64/16000</option> <option value="65">Pages/Words: 65/16250</option> <option value="66">Pages/Words: 66/16500</option> <option value="67">Pages/Words: 67/16750</option> <option value="68">Pages/Words: 68/17000</option> <option value="69">Pages/Words: 69/17250</option> <option value="70">Pages/Words: 70/17500</option> <option value="71">Pages/Words: 71/17750</option> <option value="72">Pages/Words: 72/18000</option> <option value="73">Pages/Words: 73/18250</option> <option value="74">Pages/Words: 74/18500</option> <option value="75">Pages/Words: 75/18750</option> <option value="76">Pages/Words: 76/19000</option> <option value="77">Pages/Words: 77/19250</option> <option value="78">Pages/Words: 78/19500</option> <option value="79">Pages/Words: 79/19750</option> <option value="80">Pages/Words: 80/20000</option> <option value="81">Pages/Words: 81/20250</option> <option value="82">Pages/Words: 82/20500</option> <option value="83">Pages/Words: 83/20750</option> <option value="84">Pages/Words: 84/21000</option> <option value="85">Pages/Words: 85/21250</option> <option value="86">Pages/Words: 86/21500</option> <option value="87">Pages/Words: 87/21750</option> <option value="88">Pages/Words: 88/22000</option> <option value="89">Pages/Words: 89/22250</option> <option value="90">Pages/Words: 90/22500</option> <option value="91">Pages/Words: 91/22750</option> <option value="92">Pages/Words: 92/23000</option> <option value="93">Pages/Words: 93/23250</option> <option value="94">Pages/Words: 94/23500</option> <option value="95">Pages/Words: 95/23750</option> <option value="96">Pages/Words: 96/24000</option> <option value="97">Pages/Words: 97/24250</option> <option value="98">Pages/Words: 98/24500</option> <option value="99">Pages/Words: 99/24750</option> <option value="100">Pages/Words: 100/25000</option> </select> <span class="help-block filled" id="spnNoOfPages" style="display: none;"><span class="parsley-checkemailavailability">Please select no of pages for your assignment</span></span> </div> </div> <div class="col-xs-12 col-sm-6 col-md-6" id="dvReferenceId"> <div class="form-group"> <select name="ctl00$MainContent$QuestionBox$ddlReferenceId" id="ddlReferenceId" class="form-control"> <option value="0">Referencing Style</option> <option value="1">Harvard</option> <option value="2">MLA</option> <option value="3">Vancouver</option> <option value="4">Chicago/Turabian</option> <option value="5">APA</option> <option value="6">Oxford</option> <option value="7">Oscola</option> <option value="8">AGLC</option> <option value="9">MHRA</option> <option value="10">Others</option> <option value="11">BMJ</option> <option value="12">Chicago</option> <option value="13">Footnotes</option> <option value="14">Footnotes and bibliography</option> <option value="15">IEEE</option> <option value="16">Open</option> <option value="17">OSCOLA</option> <option value="18">Turabian</option> </select> <span class="help-block filled" id="spnReferenceId" style="display: none;"><span class="parsley-checkemailavailability">Please select references for your assignment</span></span> </div> </div> </div> <div class="row"> <div class="col-xs-12 col-sm-6 col-md-6" id="dvLevelId"> <div class="form-group"> <select name="ctl00$MainContent$QuestionBox$ddlLevelId" id="ddlLevelId" class="form-control"> <option value="0">Select Level</option> <option value="1">Certification</option> <option value="2">Diploma</option> <option value="3">Advanced Diploma</option> <option value="4">Undergraduate</option> <option value="5">Masters</option> <option value="6">Others</option> </select> <span class="help-block filled" id="spnLevelId" style="display: none;"><span class="parsley-checkemailavailability">Please select level for your assignment</span></span> </div> </div> <div class="col-xs-12 col-sm-6 col-md-6"> <div id="dvNoOfCopies"> <div class="form-group"> <div class="input-group multiple-copies"> <span class="input-group-btn"> <button class="btn btn-default" data-dir="dwn" id="btnDown"><span class="glyphicon glyphicon-minus"></span></button> </span> <input name="ctl00$MainContent$QuestionBox$txtNoOfCopies" type="text" value="No Of Copies: 1" id="txtNoOfCopies" class="form-control text-center" data-noofcopies="1" placeholder="No Of Copies" /> <input type="hidden" name="ctl00$MainContent$QuestionBox$hdnNoOfCopies" id="hdnNoOfCopies" value="1" /> <span class="input-group-btn"> <button class="btn btn-default" data-dir="up" id="btnUp"><span class="glyphicon glyphicon-plus"></span></button> </span> </div> <i class="glyphicon glyphicon-info-sign popinfo" data-toggle="popover" data-trigger="focus" title="" data-html="true" data-content="<ul><li>Extra 10% discount upto 3 copies (2-3 copies)</li><li>Extra 20% discount for more than 3 copies</li></ul>"></i> </div> </div> </div> </div> <div class="row"> <div class="col-xs-12" id="dvName"> <div class="form-group"> <input name="ctl00$MainContent$QuestionBox$txtName" type="text" id="txtName" class="form-control" placeholder="Your Name" /> <span class="help-block filled" id="spnUserName" style="display: none;"><span class="parsley-checkemailavailability">Please Enter your name</span></span> </div> </div> </div> <div class="form-group"> <div class="nicEdit-main" id="txtDescription">Copy and Paste Your Assignment Here</div> <span class="help-block filled" id="spnDescription" style="display: none;"><span class="parsley-checkemailavailability">Please Enter your question</span></span> </div> <div class="row"> <div class="col-xs-12 col-sm-6 col-md-6"> <div class="form-group"> <a href="javascript:void(0);" id="hypAttachFiles" class="attach-file">Attach File</a> </div> </div> <div class="col-xs-12 col-sm-6 col-md-6"> <input type="submit" name="ctl00$MainContent$QuestionBox$btnSubmit" value="Get a Free Quote" id="btnSubmit" class="submit" /> <input type="hidden" name="ctl00$MainContent$QuestionBox$hdnSubjectId" id="hdnSubjectId" /> <input type="hidden" name="ctl00$MainContent$QuestionBox$hdnDescription" id="hdnDescription" /> <input type="hidden" name="ctl00$MainContent$QuestionBox$hdnDeadline" id="hdnDeadline" /> </div> <div id="dvUploadFileContainer" class="atchcont" style="display: none;"> <div id="dvQFile1" class="hide row"> <div class="attach-btn"> <input type="file" name="ctl00$MainContent$QuestionBox$qFile1" id="qFile1" class="filestyle" data-buttonBefore="true" /> </div> <a href="javascript:void(0);" class="clearupload" data-id="1">Cancel</a> </div> <div id="dvQFile2" class="hide row"> <div class="attach-btn"> <input type="file" name="ctl00$MainContent$QuestionBox$qFile2" id="qFile2" class="filestyle" data-buttonBefore="true" /> </div> <a href="javascript:void(0);" class="clearupload" data-id='2'>Cancel</a> </div> <div id="dvQFile3" class="hide row"> <div class="attach-btn"> <input type="file" name="ctl00$MainContent$QuestionBox$qFile3" id="qFile3" class="filestyle" data-buttonBefore="true" /> </div> <a href="javascript:void(0);" class="clearupload" data-id='3'>Cancel</a> </div> <div id="dvQFile4" class="hide row"> <div class="attach-btn"> <input type="file" name="ctl00$MainContent$QuestionBox$qFile4" id="qFile4" class="filestyle" data-buttonBefore="true" /> </div> <a href="javascript:void(0);" class="clearupload" data-id='4'>Cancel</a> </div> <div id="dvQFile5" class="hide row"> <div class="attach-btn"> <input type="file" name="ctl00$MainContent$QuestionBox$qFile5" id="qFile5" class="filestyle" data-buttonBefore="true" /> </div> <a href="javascript:void(0);" class="clearupload" data-id='5'>Cancel</a> </div> <a id="hypMoreFile" class="havemorefiles" href="javascript:void(0);" style="float: right;">Attach More File</a> </div> </div> <div class="modal fade" id="dvSubjectContaner" data-keyboard="false" data-backdrop="static" tabindex="-1" role="dialog" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> </div> <div class="modal-body"> <ul class='nav nav-tabs' role='tablist'> <li role='presentation' class='active'><a href='#accounting' aria-controls='accounting' role='tab' data-toggle='tab'>Accounting</a></li> <li role='presentation'><a href='#computer-science' aria-controls='computer-science' role='tab' data-toggle='tab'>Computer Science</a></li> <li role='presentation'><a href='#economics' aria-controls='economics' role='tab' data-toggle='tab'>Economics</a></li> <li role='presentation'><a href='#engineering' aria-controls='engineering' role='tab' data-toggle='tab'>Engineering</a></li> <li role='presentation'><a href='#finance' aria-controls='finance' role='tab' data-toggle='tab'>Finance</a></li> <li role='presentation'><a href='#thesis' aria-controls='thesis' role='tab' data-toggle='tab'>Thesis</a></li> <li role='presentation'><a href='#management' aria-controls='management' role='tab' data-toggle='tab'>Management</a></li> <li role='presentation'><a href='#science_math' aria-controls='science_math' role='tab' data-toggle='tab'>Science/Math</a></li> <li role='presentation'><a href='#statistics' aria-controls='statistics' role='tab' data-toggle='tab'>Statistics</a></li> <li role='presentation'><a href='#writing' aria-controls='writing' role='tab' data-toggle='tab'>Writing</a></li> <li role='presentation'><a href='#dissertations' aria-controls='dissertations' role='tab' data-toggle='tab'>Dissertations</a></li> <li role='presentation'><a href='#essays' aria-controls='essays' role='tab' data-toggle='tab'>Essays</a></li> <li role='presentation'><a href='#programming' aria-controls='programming' role='tab' data-toggle='tab'>Programming</a></li> <li role='presentation'><a href='#healthcare' aria-controls='healthcare' role='tab' data-toggle='tab'>Healthcare</a></li> <li role='presentation'><a href='#law' aria-controls='law' role='tab' data-toggle='tab'>Law</a></li> <li role='presentation'><a href='#humanities' aria-controls='humanities' role='tab' data-toggle='tab'>Humanities</a></li> </ul> <div class='tab-content'> <div role='tabpanel' class='tab-pane active' id='accounting'> <ul> <li><a href='javascript:void(0);' data-subjectid='1' data-topicid='14'>» Accounting - Others</a></li> <li><a href='javascript:void(0);' data-subjectid='1' data-topicid='15'>» Advanced Accounting</a></li> <li><a href='javascript:void(0);' data-subjectid='1' data-topicid='16'>» Auditing</a></li> <li><a href='javascript:void(0);' data-subjectid='1' data-topicid='17'>» Cost Accounting</a></li> <li><a href='javascript:void(0);' data-subjectid='1' data-topicid='18'>» Financial Accounting</a></li> <li><a href='javascript:void(0);' data-subjectid='1' data-topicid='19'>» Managerial Accounting</a></li> <li><a href='javascript:void(0);' data-subjectid='1' data-topicid='20'>» Payroll Accounting</a></li> <li><a href='javascript:void(0);' data-subjectid='1' data-topicid='142'>» Taxation</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='computer-science'> <ul> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='21'>» Automata or Computationing</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='22'>» Computer Architecture</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='23'>» Computer Graphics and Multimedia Applications</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='24'>» Computer Network Security</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='25'>» Data Structures</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='26'>» Database Management System</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='27'>» Design and Analysis of Algorithms</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='28'>» Information Technology</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='29'>» Linux Environment</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='30'>» Networking</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='31'>» Operating System</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='32'>» Software Engineering</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='33'>» Big Data</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='34'>» Android</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='35'>» iOS</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='36'>» Matlab</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='economics'> <ul> <li><a href='javascript:void(0);' data-subjectid='3' data-topicid='37'>» Economics - Others</a></li> <li><a href='javascript:void(0);' data-subjectid='3' data-topicid='38'>» International Economics</a></li> <li><a href='javascript:void(0);' data-subjectid='3' data-topicid='39'>» Macro Economics</a></li> <li><a href='javascript:void(0);' data-subjectid='3' data-topicid='40'>» Micro Economics</a></li> <li><a href='javascript:void(0);' data-subjectid='3' data-topicid='41'>» Game Theory</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='engineering'> <ul> <li><a href='javascript:void(0);' data-subjectid='4' data-topicid='42'>» Chemical Engineering</a></li> <li><a href='javascript:void(0);' data-subjectid='4' data-topicid='43'>» Civil Engineering</a></li> <li><a href='javascript:void(0);' data-subjectid='4' data-topicid='44'>» Electrical Engineering</a></li> <li><a href='javascript:void(0);' data-subjectid='4' data-topicid='45'>» Mechanical Engineering</a></li> <li><a href='javascript:void(0);' data-subjectid='4' data-topicid='143'>» Electronics and communication Engineering</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='finance'> <ul> <li><a href='javascript:void(0);' data-subjectid='5' data-topicid='46'>» Corporate Finance</a></li> <li><a href='javascript:void(0);' data-subjectid='5' data-topicid='47'>» International Financial Management</a></li> <li><a href='javascript:void(0);' data-subjectid='5' data-topicid='48'>» Investment</a></li> <li><a href='javascript:void(0);' data-subjectid='5' data-topicid='49'>» Risk Management</a></li> <li><a href='javascript:void(0);' data-subjectid='5' data-topicid='50'>» Personal Finance</a></li> <li><a href='javascript:void(0);' data-subjectid='5' data-topicid='51'>» Behavioral Finance</a></li> <li><a href='javascript:void(0);' data-subjectid='5' data-topicid='136'>» Finance - Others</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='thesis'> <ul> <li><a href='javascript:void(0);' data-subjectid='6' data-topicid='93'>» Accounting Thesis</a></li> <li><a href='javascript:void(0);' data-subjectid='6' data-topicid='94'>» Economics Thesis</a></li> <li><a href='javascript:void(0);' data-subjectid='6' data-topicid='95'>» Finance Thesis</a></li> <li><a href='javascript:void(0);' data-subjectid='6' data-topicid='96'>» Management Thesis</a></li> <li><a href='javascript:void(0);' data-subjectid='6' data-topicid='97'>» Other Thesis Topics</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='management'> <ul> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='52'>» Business Law</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='53'>» Human Resource Management</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='54'>» Management - Others</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='55'>» Managing Information Technology</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='56'>» Marketing Management</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='57'>» Strategic Management</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='58'>» Supply Chain Management / Operations Management</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='59'>» Hospitality Management</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='60'>» Business Ethics</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='61'>» International Business</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='62'>» Business Communications</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='124'>» Project Management</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='science_math'> <ul> <li><a href='javascript:void(0);' data-subjectid='8' data-topicid='63'>» Advanced Mathematics</a></li> <li><a href='javascript:void(0);' data-subjectid='8' data-topicid='64'>» Biology</a></li> <li><a href='javascript:void(0);' data-subjectid='8' data-topicid='65'>» Chemistry</a></li> <li><a href='javascript:void(0);' data-subjectid='8' data-topicid='66'>» Earth Science</a></li> <li><a href='javascript:void(0);' data-subjectid='8' data-topicid='67'>» Maths</a></li> <li><a href='javascript:void(0);' data-subjectid='8' data-topicid='68'>» Physics</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='statistics'> <ul> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='69'>» ANOVA</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='70'>» Applied Statistics</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='71'>» Basics of Statistics</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='72'>» Central Tendency</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='73'>» Descriptive Statistics</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='74'>» Hypothesis Testing</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='75'>» Operational Research</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='76'>» Regression</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='77'>» Sampling Theory</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='78'>» Statistics - Others</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='79'>» Stochastic processes</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='80'>» Time Series Analysis</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='writing'> <ul> <li><a href='javascript:void(0);' data-subjectid='10' data-topicid='81'>» Academic writing</a></li> <li><a href='javascript:void(0);' data-subjectid='10' data-topicid='82'>» Admission Services</a></li> <li><a href='javascript:void(0);' data-subjectid='10' data-topicid='83'>» Capstone</a></li> <li><a href='javascript:void(0);' data-subjectid='10' data-topicid='84'>» Paper Writing</a></li> <li><a href='javascript:void(0);' data-subjectid='10' data-topicid='135'>» Spanish</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='dissertations'> <ul> <li><a href='javascript:void(0);' data-subjectid='11' data-topicid='85'>» Accounting Dissertation</a></li> <li><a href='javascript:void(0);' data-subjectid='11' data-topicid='86'>» Economics Dissertation</a></li> <li><a href='javascript:void(0);' data-subjectid='11' data-topicid='87'>» Finance Dissertation</a></li> <li><a href='javascript:void(0);' data-subjectid='11' data-topicid='88'>» Human Resource Management Dissertation</a></li> <li><a href='javascript:void(0);' data-subjectid='11' data-topicid='89'>» Management Dissertation</a></li> <li><a href='javascript:void(0);' data-subjectid='11' data-topicid='90'>» Marketing Management Dissertation</a></li> <li><a href='javascript:void(0);' data-subjectid='11' data-topicid='91'>» Project Management Dissertation</a></li> <li><a href='javascript:void(0);' data-subjectid='11' data-topicid='92'>» Statistics Dissertation</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='essays'> <ul> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='98'>» Narrative Essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='99'>» Scholarship Essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='100'>» Admission Essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='101'>» Persuasive Essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='102'>» Descriptive Essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='103'>» Expository Essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='104'>» accounting essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='105'>» finance essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='106'>» economics essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='107'>» leadership essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='108'>» statistics essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='109'>» College Essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='110'>» Other Essay Topics</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='programming'> <ul> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='111'>» Java</a></li> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='112'>» Python</a></li> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='113'>» C/C++</a></li> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='114'>» HTML</a></li> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='115'>» Ruby</a></li> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='116'>» PHP</a></li> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='117'>» Javascript</a></li> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='118'>» R Programming</a></li> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='119'>» .NET/C#</a></li> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='120'>» Other Programming Language</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='healthcare'> <ul> <li><a href='javascript:void(0);' data-subjectid='121' data-topicid='122'>» Nursing</a></li> <li><a href='javascript:void(0);' data-subjectid='121' data-topicid='123'>» Healthcare - Others</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='law'> <ul> <li><a href='javascript:void(0);' data-subjectid='125' data-topicid='126'>» Tax Law</a></li> <li><a href='javascript:void(0);' data-subjectid='125' data-topicid='127'>» Intellectual Property Law</a></li> <li><a href='javascript:void(0);' data-subjectid='125' data-topicid='128'>» Family Law</a></li> <li><a href='javascript:void(0);' data-subjectid='125' data-topicid='129'>» Criminal Law</a></li> <li><a href='javascript:void(0);' data-subjectid='125' data-topicid='130'>» Constitutional Law</a></li> <li><a href='javascript:void(0);' data-subjectid='125' data-topicid='131'>» Civil Litigates</a></li> <li><a href='javascript:void(0);' data-subjectid='125' data-topicid='132'>» International Law</a></li> <li><a href='javascript:void(0);' data-subjectid='125' data-topicid='133'>» Labour/Employment Law</a></li> <li><a href='javascript:void(0);' data-subjectid='125' data-topicid='134'>» Other law</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='humanities'> <ul> <li><a href='javascript:void(0);' data-subjectid='137' data-topicid='138'>» Sociology</a></li> <li><a href='javascript:void(0);' data-subjectid='137' data-topicid='139'>» Psychology</a></li> <li><a href='javascript:void(0);' data-subjectid='137' data-topicid='140'>» Foreign language</a></li> <li><a href='javascript:void(0);' data-subjectid='137' data-topicid='141'>» Proofreading</a></li> </ul> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </section> <div id="pnlRegister" class="login-popup" style="display: none;"> <div class="modal" id="dvLoginRegister" data-keyboard="false" data-backdrop="static" tabindex="-1" role="dialog" aria-hidden="false" style="display: block;"> <div class="modal-backdrop fade in" style="height: 100%;"></div> <div class="modal-dialog"> <div class="modal-content login"> <button type="button" class="close" id="btnCloseLogin" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> <div class="modal-body"> <div class="container"> <div class="col-xs-12"> <div class="wrapper" id="wrapper"> <div class="login-form" id="dvLoginRegisterContainer"> <div class="col-md-6"> <div id="pnlRegister" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'btnRegister')"> <div id="register"> <div class="heading">Create an Account</div> <div class="form-group"><input name="ctl00$MainContent$LoginRegister$txtFisrtName" type="text" id="txtFisrtName" class="form-control name" data-parsley-required="true" data-parsley-pattern="^[A-Za-z\d\s]+$" data-parsley-pattern-message="Name should be alphanumeric." data-parsley-required-message="Please Enter your name." placeholder="Your Name" data-parsley-trigger="foucusout" /> </div> <div class="form-group"> <input name="ctl00$MainContent$LoginRegister$txtUserName" type="text" id="txtUserName" placeholder="Email Id" data-parsley-trigger="foucusout" data-parsley-type="email" class="form-control email-address" data-parsley-checkemailavailability="true" data-parsley-group="email" data-parsley-required-message="Please Enter your email id." data-parsley-required="true" data-parsley-checkemailavailability-message="Email is already registerd. Please login or choose another email id." /> </div> <div class="form-group"> <input name="ctl00$MainContent$LoginRegister$txtUserPassword" type="password" id="txtUserPassword" data-parsley-error-message="The password Should be at least 6 characters and can be a maximum of 15 characters." data-parsley-required="true" data-parsley-maxlength="15" data-parsley-minlength="6" class="form-control password" placeholder="Password" /> </div> <div class="form-group"> <input type="submit" name="ctl00$MainContent$LoginRegister$btnRegister" value="Sign Up" id="btnRegister" class="btn btn-success btn-block" data-gaq="true" data-category="Solved" data-label="163127" data-action="sign_up" /> <p class="frm-btm">Already registered? <a href="javascript:void(0)" id="login-link">Login</a> </p> </div> </div> </div> <div id="pnlLogin" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'btnLogin')"> <div id="login" style="display: none"> <div class="heading">Log In to Your Account</div> <div class="form-group"> <input name="ctl00$MainContent$LoginRegister$txtEmailId" type="text" id="txtEmailId" data-parsley-error-message="Please Enter your email id." data-parsley-required="true" data-parsley-type="email" class="form-control email-address" placeholder="Email Id" /> </div> <div class="form-group"> <input name="ctl00$MainContent$LoginRegister$txtPassword" type="password" id="txtPassword" data-parsley-error-message="Please enter your password" data-parsley-required="true" data-parsley-maxlength="15" data-parsley-minlength="6" class="form-control password" placeholder="Password" /> </div> <div class="form-group"> <div class="forgotlink"> <a href="javascript:void(0)" id="forgotlink">Forgot Password</a> </div> <input type="submit" name="ctl00$MainContent$LoginRegister$btnLogin" value="Login" id="btnLogin" class="btn btn-success btn-block" data-gaq="true" data-category="Solved" data-label="163127" data-action="sign_in" /> <p class="frm-btm"> Not Account? <a href="javascript:void(0)" id="sign-link">Sign up</a> </p> </div> </div> </div> <div id="pnlForgotPassword" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'btnForgotPassword')"> <div id="dvForgotPassword" style="display: none"> <h2>Get Password?</h2> <p>Enter your email address to reset your password</p> <div class="form-group"> <input name="ctl00$MainContent$LoginRegister$txtResetPassowrdEmail" type="text" id="txtResetPassowrdEmail" data-parsley-error-message="Please Enter your email id." data-parsley-required="true" data-parsley-type="email" class="form-control email-address" placeholder="Email Id" /> </div> <div class="form-group"> <input type="submit" name="ctl00$MainContent$LoginRegister$btnForgotPassword" value="Reset Password" id="btnForgotPassword" class="btn btn-success btn-block" /> <p class="frm-btm">Back to Login? <a href="javascript:void(0)" id="lnkbackToLogin">Click here</a> </p> </div> </div> </div> </div> <div class="col-md-6"> <div class="login-benifits"> <div class="heading"> 96% of students say that they get better grades when they use TAE </div> <ul> <li>Millions of Homework Answers and Textbook Solutions</li> <li>If stuck, Ask Questions to Our Experts ANYTIME</li> <li>24X7 Support Available</li> </ul> </div> </div> <div class="clear"></div> <input type="hidden" name="ctl00$MainContent$LoginRegister$hdnCountryName" id="hdnCountryName" value="India" /> <input type="hidden" name="ctl00$MainContent$LoginRegister$hdnUserName" id="hdnUserName" /> <input type="hidden" name="ctl00$MainContent$LoginRegister$hdnIsLoginFailed" id="hdnIsLoginFailed" /> <input type="hidden" name="ctl00$MainContent$LoginRegister$hdnEntityId" id="hdnEntityId" /> <input type="hidden" name="ctl00$MainContent$LoginRegister$hdnNavigationUrl" id="hdnNavigationUrl" value="/myaccount/QuestionRequest.aspx?qid=163127" /> <div class="clear"></div> </div> </div> </div> </div> <!-- Login end --> </div> </div> </div> </div> </div> <footer> <div class="cont"> <div class="container"> <div class="row"> <div class="col-md-4 col-sm-6 col-xs-12"> <div class="ftr-logo"> <img src="../assets/images/logo.png" width="270" height="46" /> </div> <div class="ftr-mail"><a href="mailto:info@topassignmentexperts.com" rel="nofollow">info@topassignmentexperts.com</a></div> </div> <div class="col-md-8 col-sm-6 col-xs-12"> <div class="col-md-4 col-sm-6 col-xs-12"> <a href="/assignment-help/">» Assignment Help</a> <a href="/homework-help/">» Homework Help</a> <a href="/assignment-writing-services/">» Assignment writing services</a> <a href="/buy-assignment-online/">» Buy assignment online</a> <a href="/best-essay-writing-service/">» Best essay writing service</a> </div> <div class="col-md-4 col-sm-6 col-xs-12"> <a href="/do-my-assignment-for-me/">» Do my assignment for me</a> <a href="/write-my-essay-for-me/">» Write my essay for me</a> <a href="/best-dissertation-help/">» Best Dissertation Help</a> <a href="/dissertation-writing-help/">» Dissertation Writing Help</a> </div> <div class="col-md-4 col-sm-6 col-xs-12"> <a href="/about-us.aspx" rel="nofollow">» About TAE</a> <a href="/contact-us.aspx" rel="nofollow">» Contact Us</a> <a href="/privacy-policy.aspx" rel="nofollow">» Privacy Policy</a> <a href="/revision-refund-policy.aspx" rel="nofollow">» Revision Refund Policy</a> <a href="/terms-and-condition.aspx" rel="nofollow">» T&C </a> </div> </div> </div> </div> </div> <div class="copyright text-center"> <p>Disclaimer: The reference papers provided by TAE serve as model papers for students and are not to be submitted as it is. These papers are intended to be used for research and reference purposes only.</p> Copyright © 2024. All rights reserved. </div> </footer> <div id="pnlOnlineChatModule" ng-app="OnlineChatModule"> <div id="pnlOnlineChatController" ng-controller="VisitorChatController" ng-init="initOnlineChatController('https://api.unifolks.com/signalr','visitorChatHub','https://chat.unifolks.com/',3,'{"DomainId":3,"AssignmentId":0,"LastAssignmentId":0,"UserId":0,"ConnectionId":null,"UserAgent":null,"ChatUserType":1,"EmailId":"","FirstName":"","DisplayName":"","IsExpert":false,"IsStudent":false,"IsModerator":false,"AdminUserTypeId":0,"AdminUserType":0,"TimeZoneId":"UTC","Country":null,"UserSourceTypeId":0,"IsApprovedForInstantChat":false,"IsExpertEngaged":false,"UserSourceType":0,"UserSourceText":"Not Defined","ConnectionIds":[],"IsConnectedToInstantChat":false,"InstantChatSubjects":[],"ExpertApprovedSubject":[]}')" data-ChatHubUrl="https://api.unifolks.com/signalr" data-AzureChatHubUrl="https://chat.unifolks.com/" data-OnlineChatHub="visitorChatHub" data-DomainId="3" data-UserInfo="'{"DomainId":3,"AssignmentId":0,"LastAssignmentId":0,"UserId":0,"ConnectionId":null,"UserAgent":null,"ChatUserType":1,"EmailId":"","FirstName":"","DisplayName":"","IsExpert":false,"IsStudent":false,"IsModerator":false,"AdminUserTypeId":0,"AdminUserType":0,"TimeZoneId":"UTC","Country":null,"UserSourceTypeId":0,"IsApprovedForInstantChat":false,"IsExpertEngaged":false,"UserSourceType":0,"UserSourceText":"Not Defined","ConnectionIds":[],"IsConnectedToInstantChat":false,"InstantChatSubjects":[],"ExpertApprovedSubject":[]}'"> <div id="live-user-chat" style="display: none;"> <div class="live-user-chat-top" ng-click="OnChatHeadClick($event)"> <a href="javascript:void(0);" class="live-user-chat-close">x</a> <div class="live-user-chat-head"> <div class="live-user-chat-agent"><i class="fa fa-online" aria-hidden="true"></i> <ng-bind ng-bind="ChatSessionInfo.AdminDisplayName"></ng-bind></div> I am Online - Talk to me! <div class="live-user-chat-subhead" style="display: none">Please fill out the form below to start chatting with the next available agent.</div> </div> <div class="online-chat-person" style="display: none">Mehmet Mert</div> <span class="live-user-chat-message-counter" style="display: none">3</span> </div> <div class="live-user-chat-box" ng-show="ChatStepId>0"> <div class="dissabledbox" class="ng-hide" ng-show="!IsChatReady"></div> <div class="live-user-chat-order clearfix ng-hide" ng-show="ChatStepId==1"> <div class="live-user-chat-message clearfix"> <img src="/assets/images/avatar.png" alt="" width="32" height="32"> <div class="live-user-chat-message-content clearfix"> I am <b>Monica</b>. I am here to assist you. But please let me know whether you are here for a new order or an exising one. </div> </div> <div class="live-user-chat-button clearfix"> <input type="button" value="New Order" ng-click="OrderTypeChanged(1)" class="live-chat-order-new" /> <input type="button" value="Existing Order" ng-click="OrderTypeChanged(2)" class="live-chat-order-new" /> </div> </div> <div class="live-user-chat-history ng-hide" ng-show="ChatStepId==2" ng-scrollbars ng-scrollbars-update="updateChatConversationScrollbar" ng-scrollbars-config="chatScrollbarConfig"> <div class="live-user-chat-message clearfix" ng-repeat="item in ChatSessionInfo.ChatConversationList | orderBy: DateCreated:true" ng-class="{'user':item.SenderTypeId==1}"> <img src="/assets/images/avatar.png" alt="" width="32" height="32" ng-show="item.SenderTypeId==2"> <div class="live-user-chat-message-content clearfix"> <div class="live-user-chat-person" ng-show="item.SenderTypeId==2"> <ng-bind ng-bind="item.AdminDisplayName"></ng-bind> </div> <ng-bind-html ng-bind-html="item.ConversationText|trustAsHtml" ng-show="item.Conversation"></ng-bind-html> <ng-bind-html ng-bind-html="item.ConversationFiles |trustAsHtml"></ng-bind-html> <span class="live-user-chat-time"> <ng-bind ng-bind="item.DateCreated | utcToLocal:'hh.mm a'"></ng-bind> </span> </div> </div> </div> <div class="ng-hide" ng-show="IsAgentTyping"> <div class="messageBody clearfix"> <ng-bind ng-bind="AgentTypingMessage"></ng-bind> </div> </div> <div class="attached-file" style="display: none;" id="dvChatFileContainer"></div> <!-- end chat-history --> <div class="live-user-ask-questionng-hide" ng-show="ChatStepId==2"> <textarea rows="5" cols="10" ng-keyup="onChatKeyPress($event)" ng-model="ChatMessage" enter-submit="InsertChatConversation($event)" class="form-control" placeholder="Ask Your Question Here...:-)"></textarea> <div class="live-chat-msg-btn"> <input type="button" value="Submit" class="live-chat-send" ng-click="InsertChatConversation($event)" /> <div class="live-chat-attachcont"> <div id="btnChatDropzone" class="live-chat-attach"></div> <div class="dragnupload dz-clickable dz-message" id="chatDropzone" options="dzChatOptions" callbacks="dzChatCallbacks" methods="dzChatMethods" ng-dropzone></div> </div> </div> </div> </div> <!-- end chat --> </div> </div> </div> <script id="scrSiteHome" src="/assets/2.9.478/js/dist/cms-chatbox-template.js" ></script> <script src="https://chat.unifolks.com/js/signalr/dist/browser/signalr.js" ></script> <script src="/assets/2.9.478/js/src/public/pages/VisitorChat.js" ></script> <script src="/assets/js/src/public/pages/tfth.popuplogin.js" ></script> <script src="/assets/js/src/global/datetimepicker/jquery.datetimepicker.js" ></script> <script src="/assets/js/src/global/jquery.expander.js"></script> <script> window.EventCategory = 'Solved'; window.EventLabel = '163127'; window.NavigationUrl = '/myaccount/QuestionRequest.aspx?qid=163127'; $(function () { $(document).on("click", '[data-gaq="true"]', function () { var item = $(this), action = item.data("action"), category = item.data("category"), label = item.data("label"); gtag('event', action, { 'event_category': category, 'event_label': label }); }); $(document).on("click", '#hypNoOfAnswers', function () { gtag('event', 'answer_below', { 'event_category': window.EventCategory, 'event_label': window.EventLabel }); }); if (gtag) { gtag('event', 'page_load', { 'event_category': window.EventCategory, 'event_label': window.EventLabel }); } $('header').addClass("darkbg"); $('.country-top .dropdown-menu a').on('click', function () { $(this).parent().parent().prev().html($(this).html() + '<span class="caret"></span>'); }); $('div.desc').expander({ slicePoint: 500, expandText: "<br clear='all'>View more »", userCollapseText: "View less »", moreClass: "more-link", lessClass: "less-link", expandPrefix: "", expandSpeed: 0, collapseSpeed: 0, beforeExpand: function () { }, afterExpand: function () { var action = 'view_more'; gtag('event', action, { 'event_category': window.EventCategory, 'event_label': window.EventLabel }); }, onCollapse: function () { $("html, body").animate({ scrollTop: $("header").position().top }); } }); var dateToDisable = new Date(); dateToDisable.setFullYear(dateToDisable.getFullYear() + 2, dateToDisable.getMonth(), dateToDisable.getDate()); var btnDeadline = $('#btnDeadline'); var hdnQuestionDeadline = $('#hdnQuestionDeadline'); var btnRequestQuestion = $('#btnRequestQuestion'); btnDeadline.show(); btnRequestQuestion.hide(); btnDeadline.datetimepicker({ minDate: 0, format: 'd/m/Y H:i', yearStart: new Date().getFullYear(), yearEnd: new Date().getFullYear() + 2, maxDate: dateToDisable, step: 30, onChangeDateTime: function (currentTime, input, event) { if (!currentTime) { return false; } var selectedDateTime = new Date(); if (currentTime) { selectedDateTime = new Date(currentTime); } selectedDateTime.setSeconds(0); btnDeadline.datetimepicker({ value: selectedDateTime }); }, onClose: function (currentTime, input) { var selectedDateTime = new Date(); if (currentTime) { selectedDateTime = new Date(currentTime); } if (selectedDateTime.getMinutes() > 0) { selectedDateTime.setMinutes(selectedDateTime.getMinutes() + 30); } selectedDateTime.setMinutes(0); selectedDateTime.setSeconds(0); selectedDateTime.setMilliseconds(0); var localDateTime = new Date(); if (localDateTime.getMinutes() > 0) { localDateTime.setMinutes(localDateTime.getMinutes() + 30); } localDateTime.setMinutes(0); localDateTime.setSeconds(0); localDateTime.setMilliseconds(0); if (selectedDateTime <= localDateTime) { $('#spnNewDeadline').show(); btnRequestQuestion.hide(); hdnQuestionDeadline.val(''); } else { $('#spnNewDeadline').hide(); btnRequestQuestion.show(); hdnQuestionDeadline.val(btnDeadline.val()); } } }); btnDeadline.click(function (e) { btnDeadline.datetimepicker('show'); if (gtag) { gtag('event', 'main_cta', { 'event_category': window.EventCategory, 'event_label': window.EventLabel }); } e.preventDefault(); return false; }); if (hdnQuestionDeadline.val()) { btnDeadline.hide(); btnRequestQuestion.show(); btnRequestQuestion.on('click', function () { if (gtag) { gtag('event', 'main_cta', { 'event_category': window.EventCategory, 'event_label': window.EventLabel }); } }); } else { btnDeadline.show(); btnRequestQuestion.hide(); } var downloadSolutions = $('#hypGetSolution, #hypGetSolutionBottom, #hypGetSolutionSolved, #hypGetSolutionSolvedBottom'); downloadSolutions.on('click', function (e) { var requirelogin = $(this).data('requirelogin'); if (requirelogin) { e.preventDefault(); $('#pnlRegister').show(); } }); $('#btnCloseLogin').on('click', function (e) { $('#pnlRegister').hide(); }); var options = { Register: { registerContainer: '#register', txtUserName: '#txtUserName', txtUserPassword: '#txtUserPassword', txtName: '#txtFisrtName', hdnCountryName: '#hdnCountryName', hdnUserName: '#hdnUserName', btnRegister: '#btnRegister' }, Login: { loginContainer: '#login', txtEmailId: '#txtEmailId', txtPassword: '#txtPassword', forgotlink: '#forgotlink', btnLogin: '#btnLogin', dvForgotPassword: '#dvForgotPassword', btnForgotPassword: '#btnForgotPassword', }, hdnIsLoginFailed: '#hdnIsLoginFailed', navigationUrl: window.NavigationUrl }; $('#dvLoginRegisterContainer').loginregister(options); var isLoginFailed = $('#hdnIsLoginFailed').val(); if (isLoginFailed === 'true') { $('#pnlRegister').show(); } }); </script> <script> var IsSubjectEnabled = true, DefaultSubjectId = 0, IsDeadlineEnabled = false, DeadLineHours = 10, IsNoOfPageEnabled = true, NoOfPages = 0, IsReferenceEnabled = true,IsLevelEnabled = true, ReferenceId = 0,LevelId=0, IsNameEnabled = true,eventCategory='',eventAction='',eventLabel=''; $(function () { var options = { dvQuestionContainer: '#dvQuestionContainer', dvSubject: '#dvSubject', dvSubjectContaner: '#dvSubjectContaner', dvDeadLine: '#dvDeadLine', dvNoOfPages: '#dvNoOfPages', dvReferenceId: '#dvReferenceId', dvLevelId: '#dvLevelId ', txtSubject: '#txtSubject', txtDeadLine: '#txtDeadLine', ddlNoOfPages: '#ddlNoOfPages', hdnNoOfPages: '#hdnNoOfPages', btnPageDown: '#btnPageDown', btnPageUp: '#btnPageUp', ddlReferenceId: '#ddlReferenceId', ddlLevelId: '#ddlLevelId', txtName: '#txtName', txtDescription: '#txtDescription', btnSubmit: '#btnSubmit', hdnSubjectId: '#hdnSubjectId', hypAttachFiles: '#hypAttachFiles', settings: { IsSubjectEnabled: IsSubjectEnabled, DefaultSubjectId: DefaultSubjectId, IsDeadlineEnabled: IsDeadlineEnabled, DeadLineHours: DeadLineHours, IsNoOfPageEnabled: IsNoOfPageEnabled, NoOfPages: NoOfPages, IsReferenceEnabled: IsReferenceEnabled, ReferenceId: ReferenceId, IsLevelEnabled: IsLevelEnabled, LevelId: LevelId, IsNameEnabled: IsNameEnabled } }; $("header").addClass("active"); $('#dvQuestionContainer').questionbox(options); $('#ulTopNavTab li').removeClass('active'); $('#ulTopNavTab li:nth-child(2)').addClass('active'); var downloadsoln = $('.pdf-solution'); SolnDownload = function () { downloadsoln.offset().top - $(window).scrollTop() > $(window).height() ? $(".solnfixed").slideDown() : $(".solnfixed").slideUp() }; downloadsoln.is(":visible") && (SolnDownload(), $(window).scroll(function () { SolnDownload() })); }); $('[data-toggle="popover"]').popover({ container: 'body' }); </script> <script type="text/javascript"> $(function () { }); </script> <div class="aspNetHidden"> <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="8A868A75" /> <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /> <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" /> <input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="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" /> </div> <script type="text/javascript"> //<![CDATA[ var theForm = document.forms['form1']; if (!theForm) { theForm = document.form1; } function __doPostBack(eventTarget, eventArgument) { if (!theForm.onsubmit || (theForm.onsubmit() != false)) { theForm.__EVENTTARGET.value = eventTarget; theForm.__EVENTARGUMENT.value = eventArgument; theForm.submit(); } } //]]> </script> <script src="/WebResource.axd?d=pynGkmcFUV13He1Qd6_TZNql995Jv-hfKiaCVDN0QJdSyUJc-a1p_mZZaSE5PbL9e3E97vNqOWjrLAq9kxcE9A2&t=638240343755514788" type="text/javascript"></script> </form> </body> </html>