<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-6209014571885946851</atom:id><lastBuildDate>Wed, 25 Mar 2026 09:02:39 +0000</lastBuildDate><category>unix</category><category>c</category><category>PHP</category><category>Python</category><category>jquery</category><category>javascript</category><category>software engineer</category><category>c++</category><category>crypto</category><category>Htmlcss</category><category>Operating system</category><category>Linux</category><category>Sql</category><category>mysql</category><category>cn</category><category>php questions</category><category>software engineering</category><category>ds</category><category>os</category><category>tech</category><category>Android</category><category>computer network</category><category>dsa</category><category>html</category><category>java</category><category>passive-income</category><category>Unix interview</category><category>What is website</category><category>asp.net</category><category>complete c programming</category><category>complete php</category><category>css</category><category>shellscript</category><category>unix complete</category><title>Coding Tutorials</title><description>Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, Python, PHP, Bootstrap, Java, XML and more.</description><link>https://vikramsomai.blogspot.com/</link><managingEditor>noreply@blogger.com (Unknown)</managingEditor><generator>Blogger</generator><openSearch:totalResults>545</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6209014571885946851.post-6308662430382703553</guid><pubDate>Thu, 22 Aug 2024 16:47:00 +0000</pubDate><atom:updated>2024-08-22T22:17:29.570+05:30</atom:updated><title>Write a PHP script to input data into the textbox, count the number of digits and display result appropriately</title><description>&lt;p&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;html lang=&quot;en&quot;&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;head&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;lt;meta charset=&quot;UTF-8&quot;&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;lt;title&amp;gt;Count Digits&amp;lt;/title&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/head&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;body&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;lt;h1&amp;gt;Count Digits in Input&amp;lt;/h1&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;lt;form method=&quot;post&quot; action=&quot;&quot;&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;label for=&quot;inputText&quot;&amp;gt;Enter text:&amp;lt;/label&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;input type=&quot;text&quot; id=&quot;inputText&quot; name=&quot;inputText&quot; required&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;input type=&quot;submit&quot; value=&quot;Count Digits&quot;&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/form&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;lt;?php&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; if ($_SERVER[&quot;REQUEST_METHOD&quot;] == &quot;POST&quot;) {&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Get the input value&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $inputText = $_POST[&#39;inputText&#39;];&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Initialize the digit count&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $digitCount = 0;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Count the number of digits&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; for ($i = 0; $i &amp;lt; strlen($inputText); $i++) {&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (is_numeric($inputText[$i])) {&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $digitCount++;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Display the result&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; echo &quot;&amp;lt;h2&amp;gt;Result:&amp;lt;/h2&amp;gt;&quot;;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; echo &quot;&amp;lt;p&amp;gt;Number of digits: $digitCount&amp;lt;/p&amp;gt;&quot;;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; }&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; ?&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/body&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/html&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Explanation:&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;1. HTML Form: The form uses the `POST` method to send data to the same script.&lt;/p&gt;&lt;p&gt;2. PHP Script: The PHP block processes the form submission:&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp;- Retrieve Input: It gets the input text from the form using `$_POST[&#39;inputText&#39;]`.&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp;- Count Digits: A loop goes through each character of the input text, checking if it is a numeric character using `is_numeric()`. If it is, it increments the `$digitCount` variable.&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp;- Display Result: The number of digits is displayed below the form.&lt;/p&gt;</description><link>https://vikramsomai.blogspot.com/2024/08/count-digits-in-textbox.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6209014571885946851.post-6396567458032236515</guid><pubDate>Sun, 04 Feb 2024 07:12:00 +0000</pubDate><atom:updated>2024-02-04T12:42:40.758+05:30</atom:updated><title>3 Apps to Sell Internet Data and Earn Money</title><description>&lt;h2 class=&quot;geekflare-core-exception-smartlist-h2 x-is-exception&quot; style=&quot;border: 0px; box-sizing: border-box; color: #212121; font-family: geekflare-primary, system-ui, -apple-system, &amp;quot;segoe ui&amp;quot;, roboto, &amp;quot;helvetica neue&amp;quot;, arial, &amp;quot;noto sans&amp;quot;, &amp;quot;liberation sans&amp;quot;, sans-serif, &amp;quot;apple color emoji&amp;quot;, &amp;quot;segoe ui emoji&amp;quot;, &amp;quot;segoe ui symbol&amp;quot;, &amp;quot;noto color emoji&amp;quot;; font-size: 2.25rem; line-height: 3rem; margin: 3.75rem 0px 1.5625rem; padding: 0px; vertical-align: baseline;&quot;&gt;Best Apps to Sell Internet Data and Earn Money&lt;/h2&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;color: #212121; font-family: geekflare-primary, system-ui, -apple-system, &amp;quot;segoe ui&amp;quot;, roboto, &amp;quot;helvetica neue&amp;quot;, arial, &amp;quot;noto sans&amp;quot;, &amp;quot;liberation sans&amp;quot;, sans-serif, &amp;quot;apple color emoji&amp;quot;, &amp;quot;segoe ui emoji&amp;quot;, &amp;quot;segoe ui symbol&amp;quot;, &amp;quot;noto color emoji&amp;quot;; font-size: 36px; font-weight: 700;&quot;&gt;Pawns.app&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;color: #212121; font-family: geekflare-primary, system-ui, -apple-system, &amp;quot;segoe ui&amp;quot;, roboto, &amp;quot;helvetica neue&amp;quot;, arial, &amp;quot;noto sans&amp;quot;, &amp;quot;liberation sans&amp;quot;, sans-serif, &amp;quot;apple color emoji&amp;quot;, &amp;quot;segoe ui emoji&amp;quot;, &amp;quot;segoe ui symbol&amp;quot;, &amp;quot;noto color emoji&amp;quot;; font-size: 36px; font-weight: 700;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;p style=&quot;border: 0px; box-sizing: border-box; color: #212121; font-family: geekflare-primary, system-ui, -apple-system, &amp;quot;segoe ui&amp;quot;, roboto, &amp;quot;helvetica neue&amp;quot;, arial, &amp;quot;noto sans&amp;quot;, &amp;quot;liberation sans&amp;quot;, sans-serif, &amp;quot;apple color emoji&amp;quot;, &amp;quot;segoe ui emoji&amp;quot;, &amp;quot;segoe ui symbol&amp;quot;, &amp;quot;noto color emoji&amp;quot;; font-size: 1.25rem; line-height: 1.75; margin: 0px 0px 1.875rem; padding: 0px; vertical-align: baseline;&quot;&gt;Pawns.app is a relatively new website that few people are aware of. Although several bloggers claim it is the best website for selling internet bandwidth.&lt;/p&gt;&lt;p style=&quot;border: 0px; box-sizing: border-box; color: #212121; font-family: geekflare-primary, system-ui, -apple-system, &amp;quot;segoe ui&amp;quot;, roboto, &amp;quot;helvetica neue&amp;quot;, arial, &amp;quot;noto sans&amp;quot;, &amp;quot;liberation sans&amp;quot;, sans-serif, &amp;quot;apple color emoji&amp;quot;, &amp;quot;segoe ui emoji&amp;quot;, &amp;quot;segoe ui symbol&amp;quot;, &amp;quot;noto color emoji&amp;quot;; font-size: 1.25rem; line-height: 1.75; margin: 0px 0px 1.875rem; padding: 0px; vertical-align: baseline;&quot;&gt;They pay&amp;nbsp;&lt;span style=&quot;border: 0px; box-sizing: border-box; font-weight: 600; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;$0.20 for every one GB of shared data&lt;/span&gt;.&lt;/p&gt;&lt;p style=&quot;border: 0px; box-sizing: border-box; line-height: 1.75; margin: 0px 0px 1.875rem; padding: 0px; vertical-align: baseline;&quot;&gt;&lt;span style=&quot;color: #212121; font-family: geekflare-primary, system-ui, -apple-system, segoe ui, roboto, helvetica neue, arial, noto sans, liberation sans, sans-serif, apple color emoji, segoe ui emoji, segoe ui symbol, noto color emoji;&quot;&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;https://pawns.app/?r=453077&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;h1 style=&quot;border: 0px; box-sizing: border-box; line-height: 1.75; margin: 0px 0px 1.875rem; padding: 0px; text-align: left; vertical-align: baseline;&quot;&gt;&lt;span style=&quot;color: #212121; font-family: geekflare-primary, system-ui, -apple-system, segoe ui, roboto, helvetica neue, arial, noto sans, liberation sans, sans-serif, apple color emoji, segoe ui emoji, segoe ui symbol, noto color emoji;&quot;&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;Grass.io&lt;/span&gt;&lt;/span&gt;&lt;/h1&gt;&lt;p style=&quot;border: 0px; box-sizing: border-box; line-height: 1.75; margin: 0px 0px 1.875rem; padding: 0px; vertical-align: baseline;&quot;&gt;&lt;span style=&quot;color: rgba(0, 0, 0, 0.87); font-family: &amp;quot;Google Sans&amp;quot;; white-space-collapse: preserve;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Unleash the power of unused network resources with the Grass extension for Google Chrome. This innovative tool allows you to earn points while sharing your surplus bandwidth, transforming unused digital potential into tangible rewards.
Grass functions by gently harnessing a small fragment of your surplus network resources, always maintaining your internet pace and seamless browsing experience. This extension is designed with sophisticated algorithms that guarantee only extra resources are leveraged, thereby preserving your browsing quality and speed consistently.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;border: 0px; box-sizing: border-box; line-height: 1.75; margin: 0px 0px 1.875rem; padding: 0px; vertical-align: baseline;&quot;&gt;&lt;span style=&quot;color: rgba(0, 0, 0, 0.87); font-family: Google Sans; font-size: large;&quot;&gt;&lt;span style=&quot;white-space-collapse: preserve;&quot;&gt;https://app.getgrass.io/register/?referralCode=3Vm8Hj1mIqTlBPt&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><link>https://vikramsomai.blogspot.com/2024/02/3-apps-to-sell-internet-data-and-earn.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6209014571885946851.post-7889286477008987633</guid><pubDate>Mon, 05 Jun 2023 08:08:00 +0000</pubDate><atom:updated>2023-06-05T13:38:05.563+05:30</atom:updated><title>write a shell script to find the largest number with it’s position</title><description>&lt;h2&gt;solution 1:-&lt;/h2&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;#!/bin/bash&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;# Prompt the user to enter the numbers&lt;/p&gt;&lt;p&gt;echo &quot;Enter a list of numbers (space-separated):&quot;&lt;/p&gt;&lt;p&gt;read -a numbers&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;# Initialize variables&lt;/p&gt;&lt;p&gt;largest=${numbers[0]}&lt;/p&gt;&lt;p&gt;position=0&lt;/p&gt;&lt;h2 style=&quot;text-align: left;&quot;&gt;solution 2:-&lt;/h2&gt;&lt;p&gt;# Find the largest number and its position&lt;/p&gt;&lt;p&gt;for ((i=1; i&amp;lt;${#numbers[@]}; i++))&lt;/p&gt;&lt;p&gt;do&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; if (( ${numbers[i]} &amp;gt; largest ))&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; then&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; largest=${numbers[i]}&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; position=$i&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; fi&lt;/p&gt;&lt;p&gt;done&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;# Display the largest number and its position&lt;/p&gt;&lt;p&gt;echo &quot;The largest number is $largest at position $position.&quot;&lt;/p&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;#!/bin/bash&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;# Prompt the user to enter the numbers&lt;/div&gt;&lt;div&gt;echo &quot;Enter a list of numbers (space-separated):&quot;&lt;/div&gt;&lt;div&gt;read -a numbers&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;# Initialize variables&lt;/div&gt;&lt;div&gt;largest=-999999&lt;/div&gt;&lt;div&gt;position=-1&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;# Find the largest number and its position&lt;/div&gt;&lt;div&gt;for i in &quot;${!numbers[@]}&quot;&lt;/div&gt;&lt;div&gt;do&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; if (( ${numbers[i]} &amp;gt; largest ))&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; then&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; largest=${numbers[i]}&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; position=$i&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; fi&lt;/div&gt;&lt;div&gt;done&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;# Display the largest number and its position&lt;/div&gt;&lt;div&gt;echo &quot;The largest number is $largest at position $position.&quot;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;</description><link>https://vikramsomai.blogspot.com/2023/06/write-shell-script-to-find-largest.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6209014571885946851.post-1710023631879091883</guid><pubDate>Mon, 05 Jun 2023 07:59:00 +0000</pubDate><atom:updated>2023-06-05T13:29:28.870+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">os</category><title>Different Types of Multi-User Computer Systems</title><description>&lt;h1 style=&quot;text-align: left;&quot;&gt;Different Types of Multi-User Computer Systems&lt;/h1&gt;&lt;p&gt;There are several types of multi-user computers, each with its own characteristics and intended use. Here are a few common types:&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;1. Mainframe Computers: Mainframes are powerful, large-scale computers designed to handle the processing needs of multiple users simultaneously. They are often used in organizations that require extensive data processing, such as large corporations, government agencies, and research institutions.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;2. Server Computers: Servers are computers that provide various services and resources to multiple users or clients over a network. They can handle tasks such as file storage, hosting websites, managing databases, and running applications. Servers typically have more processing power, storage capacity, and memory than individual user computers.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;3. Time-Sharing Systems: Time-sharing systems allow multiple users to simultaneously access and utilize a computer&#39;s resources. Each user is allocated a specific time slice or &quot;time-sharing slot&quot; during which they can interact with the computer. This approach allows efficient resource utilization and makes it appear as though each user has exclusive access to the system.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;4. Terminal-based Systems: Terminal-based systems involve a central computer or server that connects to multiple remote terminals. The terminals, which are usually simpler devices without extensive processing capabilities, allow users to access and interact with the central computer remotely. This approach enables multiple users to work on a single computer simultaneously.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;5. Virtualization: Virtualization technology allows a single physical computer, known as the host, to function as multiple virtual machines (VMs), each with its own operating system and applications. Each VM can be used by a different user, providing a multi-user environment. This approach enables efficient use of hardware resources and allows for isolation between users.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;6. Cloud Computing: Cloud computing involves accessing and utilizing computing resources, such as storage, processing power, and software applications, over the internet. Cloud platforms enable multiple users to share these resources simultaneously. Users can access their applications and data from different devices and locations, making it a flexible and scalable multi-user computing environment.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;These are just a few examples of multi-user computer systems. The specific type of multi-user system chosen depends on the requirements of the organization or individuals using it, such as the number of users, the level of resource sharing needed, and the intended applications or services.&lt;/p&gt;</description><link>https://vikramsomai.blogspot.com/2023/06/different-types-of-multi-user-computer.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6209014571885946851.post-7374430926848698338</guid><pubDate>Sun, 04 Jun 2023 16:43:00 +0000</pubDate><atom:updated>2023-06-04T22:13:45.282+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Python</category><title>Python Program: Reverse a Word - Simple and Efficient Word Reversal in Python</title><description>&lt;p&gt;&amp;nbsp;Certainly! Here&#39;s a Python program that accepts a word from the user and reverses it:&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;```python&lt;/p&gt;&lt;p&gt;word = input(&quot;Enter a word: &quot;)&lt;/p&gt;&lt;p&gt;reversed_word = word[::-1]&lt;/p&gt;&lt;p&gt;print(&quot;Reversed word:&quot;, reversed_word)&lt;/p&gt;&lt;p&gt;```&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;In this program, we use the `input()` function to prompt the user to enter a word. The input is stored in the `word` variable. We then use slicing with a step value of -1 (`[::-1]`) to reverse the characters in the word. The reversed word is stored in the `reversed_word` variable. Finally, we use the `print()` function to display the reversed word to the user.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Here&#39;s an example of how the program would run:&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;```&lt;/p&gt;&lt;p&gt;Enter a word: Python&lt;/p&gt;&lt;p&gt;Reversed word: nohtyP&lt;/p&gt;&lt;p&gt;```&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Please note that this program assumes the user will input a single word without any spaces.&lt;/p&gt;</description><link>https://vikramsomai.blogspot.com/2023/06/python-program-reverse-word-simple-and.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6209014571885946851.post-2137454777456763333</guid><pubDate>Sun, 04 Jun 2023 16:38:00 +0000</pubDate><atom:updated>2023-06-04T22:08:45.704+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">os</category><title>Understanding Process Schedulers: Optimizing Task Allocation and Resource Management in Operating Systems</title><description>&lt;p&gt;&amp;nbsp;Process schedulers are an essential component of an operating system that manages the allocation of system resources to running processes or tasks. They play a crucial role in ensuring efficient and fair execution of processes, maximizing CPU utilization, minimizing response time, and providing a balanced distribution of resources.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Process scheduling involves selecting the most suitable process from the pool of ready processes and allocating the CPU to it. The scheduling decision is made by the short-term scheduler or CPU scheduler. The primary objective of the scheduler is to ensure that the CPU is effectively utilized and processes are executed in a timely manner.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Different scheduling algorithms and policies can be employed by process schedulers, depending on the operating system and specific requirements. Some commonly used scheduling algorithms include:&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;1. First-Come, First-Served (FCFS): Processes are executed in the order they arrive in the ready queue. It is a non-preemptive algorithm, meaning once a process starts executing, it continues until it completes or gets blocked.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;2. Round Robin (RR): Each process is given a fixed time slice or quantum to execute before being preempted and moved to the back of the queue. This algorithm provides fair scheduling and is often used in time-sharing systems.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;3. Shortest Job Next (SJN) or Shortest Job First (SJF): The process with the smallest burst time is selected for execution. This algorithm aims to minimize the average waiting time and can be preemptive or non-preemptive.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;4. Priority Scheduling: Each process is assigned a priority, and the CPU is allocated to the highest priority process. It can be preemptive or non-preemptive, and priorities can be based on factors like process type, deadlines, or system-defined parameters.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;5. Multilevel Queue Scheduling: Processes are divided into multiple queues based on priority or other criteria. Each queue may have its own scheduling algorithm, allowing for different levels of scheduling policies for different types of processes.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;The choice of a scheduling algorithm depends on various factors, including the nature of the workload, system responsiveness requirements, fairness considerations, and resource utilization goals.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;It&#39;s important to note that the long-term scheduler or admission scheduler plays a role in process scheduling as well. It determines which processes should be admitted to the system, considering factors such as the degree of multiprogramming and available resources.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Overall, process schedulers are responsible for managing the execution of processes in an efficient and balanced manner, ensuring optimal utilization of system resources and meeting performance objectives.&lt;/p&gt;</description><link>https://vikramsomai.blogspot.com/2023/06/understanding-process-schedulers.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6209014571885946851.post-6339751953252224442</guid><pubDate>Sun, 04 Jun 2023 16:33:00 +0000</pubDate><atom:updated>2023-06-04T22:03:14.399+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">os</category><title>Process Schedulers: Optimizing Task Allocation and Resource Management</title><description>&lt;p&gt;Process schedulers are an integral part of an operating system responsible for managing and scheduling processes or tasks to efficiently utilize system resources. They ensure fair and efficient allocation of the CPU (Central Processing Unit) to running processes. There are different types of process schedulers, each with its own characteristics and objectives. The three main types of process schedulers are:&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;h2 style=&quot;text-align: left;&quot;&gt;1. Long-term scheduler (Admission scheduler):&lt;/h2&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp;- Also known as the admission scheduler or job scheduler.&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp;- Determines which processes should be admitted to the system from the pool of new processes.&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp;- It focuses on the degree of multiprogramming or the number of processes that should be allowed to run concurrently.&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp;- Typically, long-term schedulers are not invoked frequently and deal with processes in the secondary memory.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;h2 style=&quot;text-align: left;&quot;&gt;2. Short-term scheduler (CPU scheduler):&lt;/h2&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp;- Also known as the CPU scheduler or dispatcher.&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp;- Determines which process from the ready queue should be executed next and allocates the CPU to that process.&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp;- It aims to minimize the response time, maximize throughput, and ensure fairness in process execution.&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp;- Short-term schedulers are invoked frequently (e.g., on every clock interrupt or when a process completes its execution or is blocked) to make scheduling decisions.&lt;/p&gt;&lt;h2 style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;3. Medium-term scheduler:&lt;/h2&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp;- Optional scheduler present in some operating systems, not always implemented.&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp;- Transfers processes from main memory to secondary storage or vice versa to manage memory resources.&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp;- It is responsible for controlling the degree of multiprogramming by moving processes in and out of main memory, based on their priority or other criteria.&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp;- The medium-term scheduler helps to maintain a good balance between the number of processes in memory and the available resources.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;These schedulers work together to manage the lifecycle of processes and ensure efficient resource utilization within an operating system. They are designed to balance competing objectives such as maximizing CPU utilization, minimizing response time, providing fairness, and managing memory effectively. Different operating systems and scheduling algorithms employ various strategies to achieve these objectives, such as First-Come-First-Served (FCFS), Round Robin, Shortest Job Next (SJN), Priority Scheduling, and many others.&lt;/p&gt;</description><link>https://vikramsomai.blogspot.com/2023/06/process-schedulers-optimizing-task.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6209014571885946851.post-283300901374585335</guid><pubDate>Tue, 26 Apr 2022 03:15:00 +0000</pubDate><atom:updated>2022-04-26T08:45:52.349+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Python</category><title>Python program to convert month name to a number of days</title><description>&lt;p style=&quot;background-color: white; border: 0px; box-sizing: inherit; font-family: Helvetica; font-size: 40px; line-height: 1.2em; margin: 0px; overflow-wrap: break-word; padding: 0px; text-align: left;&quot;&gt;Python program to convert month name to a number of days&lt;/p&gt;&lt;p style=&quot;background-color: white; border: 0px; box-sizing: inherit; font-family: Helvetica; font-size: 40px; line-height: 1.2em; margin: 0px; overflow-wrap: break-word; padding: 0px; text-align: left;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; border: 0px; box-sizing: inherit; font-family: Helvetica; line-height: 1.2em; margin: 0px; overflow-wrap: break-word; padding: 0px; text-align: left;&quot;&gt;&lt;span style=&quot;font-size: medium;&quot;&gt;code:-&lt;/span&gt;&lt;/p&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: medium;&quot;&gt;print&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;List of months: January, February, March, April, May, June, July, August, September, October, November, December&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
month_name &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; input&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Input the name of Month: &lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
 
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;if&lt;/span&gt; month_name &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;February&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;:&lt;/span&gt;
    print&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;No. of days: 28/29 days&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
elif month_name in &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;April&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;June&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;September&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;November&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;:&lt;/span&gt;
    print&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;No. of days: 30 days&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
elif month_name in &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;January&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;March&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;May&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;July&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;August&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;October&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;December&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;:&lt;/span&gt;
    print&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;No. of days: 31 day&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;else&lt;/span&gt;&lt;span style=&quot;color: #e34adc;&quot;&gt;:&lt;/span&gt;
    print&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Wrong month name&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;color: #808030;&quot;&gt;&lt;span style=&quot;font-size: medium;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: medium;&quot;&gt;output:-&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: medium;&quot;&gt;List of months: January, February, March, April, May, June, July, August, September, October, November, December
Input the name of Month: March
No. of days: 31 day
&amp;gt;&amp;gt;&amp;gt; &lt;/span&gt;&lt;/pre&gt;&lt;p style=&quot;background-color: white; border: 0px; box-sizing: inherit; font-family: Helvetica; font-size: 40px; line-height: 1.2em; margin: 0px; overflow-wrap: break-word; padding: 0px; text-align: left;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description><link>https://vikramsomai.blogspot.com/2022/04/Python-program-to-convert-month-name-to-a-number-of-days.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6209014571885946851.post-2125332304705432846</guid><pubDate>Fri, 22 Apr 2022 13:24:00 +0000</pubDate><atom:updated>2022-04-22T18:54:07.802+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Android</category><title>Top Anime Wallpaper Apps</title><description>&lt;h1 class=&quot;post-title&quot; style=&quot;border: 0px; box-sizing: border-box; color: var(--main-color); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-stretch: inherit; font-variant-east-asian: inherit; font-variant-numeric: inherit; font-weight: 400; line-height: var(--bigger-font); margin: 0px; overflow-wrap: break-word; padding: 0px; vertical-align: baseline;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Top 10 Anime Wallpaper Apps&lt;/span&gt;&lt;/h1&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;p class=&quot;gt-block&quot; style=&quot;border: 0px; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 18px; font-stretch: inherit; font-variant-east-asian: inherit; font-variant-numeric: inherit; line-height: 1.7rem; margin: 1rem 0px; overflow-wrap: break-word; padding: 0px; vertical-align: baseline;&quot;&gt;If you like&amp;nbsp;&lt;span style=&quot;border: 0px; box-sizing: border-box; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: 700; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;anime wallpapers&lt;/span&gt;You have come to the right place, since in this article we show you which are the 10 best anime wallpaper applications, an ideal application for lovers of this genre, a genre that, far from perishing, continues to expand every year.&lt;/p&gt;&lt;p class=&quot;gt-block&quot; style=&quot;border: 0px; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 18px; font-stretch: inherit; font-variant-east-asian: inherit; font-variant-numeric: inherit; line-height: 1.7rem; margin: 1rem 0px; overflow-wrap: break-word; padding: 0px; vertical-align: baseline;&quot;&gt;All the applications that we show you in this article are compatible with any terminal that runs Android 5.0 onwards. All of them are available for your&amp;nbsp;&lt;span style=&quot;border: 0px; box-sizing: border-box; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: 700; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;download completely free&lt;/span&gt;&amp;nbsp;and only one of them offers us in-app purchases.&lt;/p&gt;&lt;p style=&quot;border: 0px; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 18px; font-stretch: inherit; font-variant-east-asian: inherit; font-variant-numeric: inherit; line-height: inherit; margin: 0px; overflow-wrap: break-word; padding: 0px; vertical-align: baseline;&quot;&gt;&lt;/p&gt;&lt;aside class=&quot;publi inside-content&quot; id=&quot;abn_singlestealer&quot; style=&quot;border: 0px; box-sizing: border-box; display: inline-block; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 18px; font-stretch: inherit; font-variant-east-asian: inherit; font-variant-numeric: inherit; height: auto; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline; width: 863.004px;&quot;&gt;&lt;/aside&gt;&lt;p style=&quot;border: 0px; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 18px; font-stretch: inherit; font-variant-east-asian: inherit; font-variant-numeric: inherit; line-height: inherit; margin: 0px; overflow-wrap: break-word; padding: 0px; vertical-align: baseline;&quot;&gt;&lt;/p&gt;&lt;p style=&quot;border: 0px; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 18px; font-stretch: inherit; font-variant-east-asian: inherit; font-variant-numeric: inherit; line-height: inherit; margin: 0px; overflow-wrap: break-word; padding: 0px; vertical-align: baseline;&quot;&gt;&lt;/p&gt;&lt;p style=&quot;border: 0px; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 18px; font-stretch: inherit; font-variant-east-asian: inherit; font-variant-numeric: inherit; line-height: 1.7rem; margin: 1rem 0px; overflow-wrap: break-word; padding: 0px; vertical-align: baseline;&quot;&gt;&lt;span id=&quot;more-180108&quot; style=&quot;border: 0px; box-sizing: border-box; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;gt-block&quot; style=&quot;border: 0px; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 18px; font-stretch: inherit; font-variant-east-asian: inherit; font-variant-numeric: inherit; line-height: 1.7rem; margin: 1rem 0px; overflow-wrap: break-word; padding: 0px; vertical-align: baseline;&quot;&gt;I invite you to take a look at the list below these lines to find your&amp;nbsp;&lt;span style=&quot;border: 0px; box-sizing: border-box; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: 700; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;anime backgrounds app&lt;/span&gt;&amp;nbsp;favorite.&lt;/p&gt;&lt;p class=&quot;gt-block&quot; style=&quot;border: 0px; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 18px; font-stretch: inherit; font-variant-east-asian: inherit; font-variant-numeric: inherit; line-height: 1.7rem; margin: 1rem 0px; overflow-wrap: break-word; padding: 0px; vertical-align: baseline;&quot;&gt;&lt;/p&gt;&lt;p style=&quot;-webkit-text-stroke-width: 0px; border: 0px; box-sizing: border-box; color: black; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 18px; font-stretch: inherit; font-style: normal; font-variant-caps: normal; font-variant-east-asian: inherit; font-variant-ligatures: normal; font-variant-numeric: inherit; font-weight: 400; letter-spacing: normal; line-height: 1.7rem; margin: 1rem 0px; orphans: 2; overflow-wrap: break-word; padding: 0px; text-align: start; text-decoration-color: initial; text-decoration-style: initial; text-decoration-thickness: initial; text-indent: 0px; text-transform: none; vertical-align: baseline; white-space: normal; widows: 2; word-spacing: 0px;&quot;&gt;&lt;picture class=&quot;alignnone size-full wp-image-180109&quot; style=&quot;box-sizing: border-box; display: block; height: auto; margin: 5px 20px 20px 0px; max-width: 100%; width: 863.004px;&quot;&gt;&lt;source data-lazy-sizes=&quot;(max-width: 1024px) 100vw, 860px&quot; data-lazy-srcset=&quot;https://www.androidsis.com/wp-content/uploads/2021/06/fondos-de-pantalla-anime-1.jpg.webp 1200w, https://www.androidsis.com/wp-content/uploads/2021/06/fondos-de-pantalla-anime-1-478x269.jpg.webp 478w, https://www.androidsis.com/wp-content/uploads/2021/06/fondos-de-pantalla-anime-1-1024x576.jpg.webp 1024w, https://www.androidsis.com/wp-content/uploads/2021/06/fondos-de-pantalla-anime-1-768x432.jpg.webp 768w, https://www.androidsis.com/wp-content/uploads/2021/06/fondos-de-pantalla-anime-1-320x180.jpg.webp 320w, https://www.androidsis.com/wp-content/uploads/2021/06/fondos-de-pantalla-anime-1-400x225.jpg.webp 400w, https://www.androidsis.com/wp-content/uploads/2021/06/fondos-de-pantalla-anime-1-500x281.jpg.webp 500w, https://www.androidsis.com/wp-content/uploads/2021/06/fondos-de-pantalla-anime-1-170x96.jpg.webp 170w, https://www.androidsis.com/wp-content/uploads/2021/06/fondos-de-pantalla-anime-1-420x236.jpg.webp 420w, https://www.androidsis.com/wp-content/uploads/2021/06/fondos-de-pantalla-anime-1-840x473.jpg.webp 840w, https://www.androidsis.com/wp-content/uploads/2021/06/fondos-de-pantalla-anime-1-150x84.jpg.webp 150w&quot; sizes=&quot;(max-width: 1024px) 100vw, 860px&quot; srcset=&quot;https://www.androidsis.com/wp-content/uploads/2021/06/fondos-de-pantalla-anime-1.jpg.webp 1200w, https://www.androidsis.com/wp-content/uploads/2021/06/fondos-de-pantalla-anime-1-478x269.jpg.webp 478w, https://www.androidsis.com/wp-content/uploads/2021/06/fondos-de-pantalla-anime-1-1024x576.jpg.webp 1024w, https://www.androidsis.com/wp-content/uploads/2021/06/fondos-de-pantalla-anime-1-768x432.jpg.webp 768w, https://www.androidsis.com/wp-content/uploads/2021/06/fondos-de-pantalla-anime-1-320x180.jpg.webp 320w, https://www.androidsis.com/wp-content/uploads/2021/06/fondos-de-pantalla-anime-1-400x225.jpg.webp 400w, https://www.androidsis.com/wp-content/uploads/2021/06/fondos-de-pantalla-anime-1-500x281.jpg.webp 500w, https://www.androidsis.com/wp-content/uploads/2021/06/fondos-de-pantalla-anime-1-170x96.jpg.webp 170w, https://www.androidsis.com/wp-content/uploads/2021/06/fondos-de-pantalla-anime-1-420x236.jpg.webp 420w, https://www.androidsis.com/wp-content/uploads/2021/06/fondos-de-pantalla-anime-1-840x473.jpg.webp 840w, https://www.androidsis.com/wp-content/uploads/2021/06/fondos-de-pantalla-anime-1-150x84.jpg.webp 150w&quot; style=&quot;box-sizing: border-box;&quot; type=&quot;image/webp&quot;&gt;&lt;/source&gt;&lt;/picture&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;h2 style=&quot;-webkit-text-stroke-width: 0px; border: 0px; box-sizing: border-box; color: black; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-stretch: inherit; font-style: normal; font-variant-caps: normal; font-variant-east-asian: inherit; font-variant-ligatures: normal; font-variant-numeric: inherit; letter-spacing: normal; line-height: inherit; margin: 3rem 0px 2rem; orphans: 2; overflow-wrap: break-word; padding: 0px; text-align: start; text-decoration-color: initial; text-decoration-style: initial; text-decoration-thickness: initial; text-indent: 0px; text-transform: none; vertical-align: baseline; white-space: normal; widows: 2; word-spacing: 0px;&quot;&gt;&lt;span id=&quot;Fondos_de_pantalla_de_Anime_4K&quot; style=&quot;border: 0px; box-sizing: border-box; font-family: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Anime Wallpaper&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;border: 0px; box-sizing: border-box; font-family: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgLo9Dk3DPZCZ52QzPKbszToXagZd0d635h_MS1M7iBGyeqJki9sJM7AgqPWUj0hWASKvxJdeK5D2qAJ4dFcny8fcnmECyjrwLx_6I9j6qTHYcei6jqNu7RKYq3cs-fLXGJMxoCvh3PN1TVBOoRkDNnzU71j0Spx-_PBq9NRWg0CkAqnG0FutSXeVZgcw/s1024/Untitled%20design.png&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;500&quot; data-original-width=&quot;1024&quot; height=&quot;208&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgLo9Dk3DPZCZ52QzPKbszToXagZd0d635h_MS1M7iBGyeqJki9sJM7AgqPWUj0hWASKvxJdeK5D2qAJ4dFcny8fcnmECyjrwLx_6I9j6qTHYcei6jqNu7RKYq3cs-fLXGJMxoCvh3PN1TVBOoRkDNnzU71j0Spx-_PBq9NRWg0CkAqnG0FutSXeVZgcw/w427-h208/Untitled%20design.png&quot; width=&quot;427&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;border: 0px; box-sizing: border-box; font-stretch: inherit; font-variant-east-asian: inherit; font-variant-numeric: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;&lt;p class=&quot;gt-block&quot; style=&quot;border: 0px; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 18px; font-stretch: inherit; font-style: inherit; font-variant: inherit; line-height: 1.7rem; margin: 1rem 0px; overflow-wrap: break-word; padding: 0px; vertical-align: baseline;&quot;&gt;4K anime wallpapers, puts at our disposal a large number of wallpapers in both 4K resolution and Full HD resolution. Practically&lt;span style=&quot;border: 0px; box-sizing: border-box; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: 700; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;&amp;nbsp;every week we will find a new update&lt;/span&gt;&amp;nbsp;offering new wallpapers.&lt;/p&gt;&lt;p class=&quot;gt-block&quot; style=&quot;border: 0px; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 18px; font-stretch: inherit; font-style: inherit; font-variant: inherit; line-height: 1.7rem; margin: 1rem 0px; overflow-wrap: break-word; padding: 0px; vertical-align: baseline;&quot;&gt;Unlike other applications of this type, Anime Wallpapers 4K is&amp;nbsp;&lt;span style=&quot;border: 0px; box-sizing: border-box; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: 700; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;also compatible with the format of tablets&lt;/span&gt;, a function that very few other applications offer us. It includes a section that allows us to store all the wallpapers that we like the most so that we can change them quickly without having to spend long periods of time looking for which one we like.&lt;/p&gt;&lt;p class=&quot;gt-block&quot; style=&quot;border: 0px; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 18px; font-stretch: inherit; font-style: inherit; font-variant: inherit; line-height: 1.7rem; margin: 1rem 0px; overflow-wrap: break-word; padding: 0px; vertical-align: baseline;&quot;&gt;Another interesting function that we do not find in other applications is the possibility of&amp;nbsp;&lt;span style=&quot;border: 0px; box-sizing: border-box; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: 700; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;download the wallpapers to our smartphone&lt;/span&gt;&amp;nbsp;that you like the most, a function that allows us to later share them through messaging applications, by email, post them on social networks.&lt;/p&gt;&lt;p style=&quot;border: 0px; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 18px; font-stretch: inherit; font-style: inherit; font-variant: inherit; line-height: 1.7rem; margin: 1rem 0px; overflow-wrap: break-word; padding: 0px; vertical-align: baseline;&quot;&gt;Among the different characters and themes that this application offers us we find:&lt;/p&gt;&lt;p style=&quot;border: 0px; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 18px; font-stretch: inherit; font-style: inherit; font-variant: inherit; line-height: 1.7rem; margin: 1rem 0px; overflow-wrap: break-word; padding: 0px; vertical-align: baseline;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;border: 0px; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 18px; font-stretch: inherit; font-style: inherit; font-variant: inherit; line-height: 1.7rem; margin: 1rem 0px; overflow-wrap: break-word; padding: 0px; vertical-align: baseline;&quot;&gt;Anime Wallpaper is available for your&amp;nbsp;&lt;span style=&quot;border: 0px; box-sizing: border-box; font-stretch: inherit; font-variant-east-asian: inherit; font-variant-numeric: inherit; font-weight: 700; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;download completely free&lt;/span&gt;, includes ads but no in-app purchases.&lt;/p&gt;&lt;h1 style=&quot;border: 0px; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &amp;quot;Helvetica Neue&amp;quot;, sans-serif; font-size: 18px; font-stretch: inherit; font-style: inherit; font-variant: inherit; line-height: 1.7rem; margin: 1rem 0px; overflow-wrap: break-word; padding: 0px; text-align: left; vertical-align: baseline;&quot;&gt;link:-&lt;/h1&gt;&lt;p style=&quot;border: 0px; box-sizing: border-box; font-stretch: inherit; font-variant-east-asian: inherit; font-variant-numeric: inherit; line-height: 1.7rem; margin: 1rem 0px; overflow-wrap: break-word; padding: 0px; vertical-align: baseline;&quot;&gt;&lt;span face=&quot;-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif&quot;&gt;&lt;span style=&quot;font-size: 18px;&quot;&gt;&lt;a href=&quot;https://play.google.com/store/apps/details?id=com.somai.animeandgamingfreewallpaper&quot;&gt;https://play.google.com/store/apps/details?id=com.somai.animeandgamingfreewallpaper&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;border: 0px; box-sizing: border-box; font-stretch: inherit; font-variant-east-asian: inherit; font-variant-numeric: inherit; line-height: 1.7rem; margin: 1rem 0px; overflow-wrap: break-word; padding: 0px; vertical-align: baseline;&quot;&gt;&lt;span face=&quot;-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;border: 0px; box-sizing: border-box; font-stretch: inherit; font-variant-east-asian: inherit; font-variant-numeric: inherit; line-height: 1.7rem; margin: 1rem 0px; overflow-wrap: break-word; padding: 0px; vertical-align: baseline;&quot;&gt;&lt;span face=&quot;-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;border: 0px; box-sizing: border-box; font-stretch: inherit; font-variant-east-asian: inherit; font-variant-numeric: inherit; line-height: 1.7rem; margin: 1rem 0px; overflow-wrap: break-word; padding: 0px; vertical-align: baseline;&quot;&gt;&lt;span face=&quot;-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description><link>https://vikramsomai.blogspot.com/2022/04/top-anime-wallpaper-apps.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgLo9Dk3DPZCZ52QzPKbszToXagZd0d635h_MS1M7iBGyeqJki9sJM7AgqPWUj0hWASKvxJdeK5D2qAJ4dFcny8fcnmECyjrwLx_6I9j6qTHYcei6jqNu7RKYq3cs-fLXGJMxoCvh3PN1TVBOoRkDNnzU71j0Spx-_PBq9NRWg0CkAqnG0FutSXeVZgcw/s72-w427-h208-c/Untitled%20design.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6209014571885946851.post-8782212963835642444</guid><pubDate>Mon, 18 Apr 2022 07:13:00 +0000</pubDate><atom:updated>2022-04-18T12:43:03.286+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Python</category><title>Python program to check whether an alphabet is a vowel or consonant</title><description>&lt;p style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-size: medium;&quot;&gt;Python program to check whether an alphabet is a vowel or consonant&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: medium;&quot;&gt;code:-&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot;&gt;&lt;/p&gt;&lt;pre style=&quot;background: #ffffff; color: black;&quot;&gt;&lt;span style=&quot;font-size: medium;&quot;&gt;str &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; input&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Input a letter of the alphabet: &lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
 
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;if&lt;/span&gt; str in &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&#39;a&#39;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #0000e6;&quot;&gt;&#39;e&#39;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #0000e6;&quot;&gt;&#39;i&#39;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #0000e6;&quot;&gt;&#39;o&#39;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #0000e6;&quot;&gt;&#39;u&#39;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #0000e6;&quot;&gt;&#39;A&#39;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #0000e6;&quot;&gt;&#39;E&#39;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #0000e6;&quot;&gt;&#39;I&#39;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #0000e6;&quot;&gt;&#39;O&#39;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #0000e6;&quot;&gt;&#39;U&#39;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #0000e6;&quot;&gt;&#39;A&#39;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #0000e6;&quot;&gt;&#39;E&#39;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;:&lt;/span&gt;
    print&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #007997;&quot;&gt;%s&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt; is a vowel.&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;%&lt;/span&gt; str&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;else&lt;/span&gt;&lt;span style=&quot;color: #e34adc;&quot;&gt;:&lt;/span&gt;
    print&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #007997;&quot;&gt;%s&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt; is a consonant.&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;%&lt;/span&gt; str&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt; 
&lt;/span&gt;&lt;/pre&gt;&lt;span style=&quot;font-size: medium;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;p&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: medium;&quot;&gt;output:-&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: medium;&quot;&gt;Input a letter of the alphabet: a&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: medium;&quot;&gt;a is a vowel.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: medium;&quot;&gt;&amp;gt;&amp;gt;&amp;gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: medium;&quot;&gt;Input a letter of the alphabet: b&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: medium;&quot;&gt;b is a consonant.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: medium;&quot;&gt;&amp;gt;&amp;gt;&amp;gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;</description><link>https://vikramsomai.blogspot.com/2022/04/python-program-to-check-whether.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6209014571885946851.post-8490742531048614143</guid><pubDate>Mon, 18 Apr 2022 07:05:00 +0000</pubDate><atom:updated>2022-04-18T12:35:31.883+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Python</category><title>Python program to check the validity of a password</title><description>&lt;h1 style=&quot;text-align: left;&quot;&gt;Python program to check the validity of a password&lt;/h1&gt;&lt;div&gt;&lt;p style=&quot;background-color: white; border: 0px; box-sizing: inherit; font-family: Helvetica; font-size: 18px; margin: 0px 0px 1.5em; overflow-wrap: break-word; padding: 0px;&quot;&gt;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;Validation rules:-&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; border: 0px; box-sizing: inherit; font-family: Helvetica; font-size: 18px; margin: 0px 0px 1.5em; overflow-wrap: break-word; padding: 0px;&quot;&gt;At least 1 letter between [a-z] and 1 letter between [A-Z]&lt;/p&gt;&lt;p style=&quot;background-color: white; border: 0px; box-sizing: inherit; font-family: Helvetica; font-size: 18px; margin: 0px 0px 1.5em; overflow-wrap: break-word; padding: 0px;&quot;&gt;At least 1 number between [0-9]&lt;/p&gt;&lt;p style=&quot;background-color: white; border: 0px; box-sizing: inherit; font-family: Helvetica; font-size: 18px; margin: 0px 0px 1.5em; overflow-wrap: break-word; padding: 0px;&quot;&gt;At least 1 character from [$#@]&lt;/p&gt;&lt;div class=&quot;code-block code-block-6&quot; style=&quot;background-color: white; box-sizing: inherit; clear: both; font-family: Helvetica; font-size: 18px; margin: 8px 0px;&quot;&gt;&lt;/div&gt;&lt;p style=&quot;background-color: white; border: 0px; box-sizing: inherit; font-family: Helvetica; font-size: 18px; margin: 0px 0px 1.5em; overflow-wrap: break-word; padding: 0px;&quot;&gt;Minimum length 8 characters&lt;/p&gt;&lt;p style=&quot;background-color: white; border: 0px; box-sizing: inherit; font-family: Helvetica; font-size: 18px; margin: 0px 0px 1.5em; overflow-wrap: break-word; padding: 0px;&quot;&gt;&lt;b&gt;code:-&lt;/b&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; border: 0px; box-sizing: inherit; font-family: Helvetica; font-size: 18px; margin: 0px 0px 1.5em; overflow-wrap: break-word; padding: 0px;&quot;&gt;&lt;/p&gt;&lt;pre style=&quot;background: #ffffff; color: black;&quot;&gt;&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;import&lt;/span&gt; re
password&lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #400000;&quot;&gt;input&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;Input your password: &quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
x &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #074726;&quot;&gt;True&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;while&lt;/span&gt; x&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;  
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;if&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #400000;&quot;&gt;len&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;password&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #44aadd;&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;8&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
        &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;break&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;elif&lt;/span&gt; &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;not&lt;/span&gt; re&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;search&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;[a-z]&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;password&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
        &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;break&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;elif&lt;/span&gt; &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;not&lt;/span&gt; re&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;search&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;[0-9]&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;password&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
        &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;break&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;elif&lt;/span&gt; &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;not&lt;/span&gt; re&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;search&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;[A-Z]&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;password&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
        &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;break&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;elif&lt;/span&gt; &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;not&lt;/span&gt; re&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;search&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;[$#@]&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;password&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
        &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;break&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;elif&lt;/span&gt; re&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;search&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\s&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;password&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
        &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;break&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;else&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
        &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;Valid Password&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
        x&lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #074726;&quot;&gt;False&lt;/span&gt;
        &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;break&lt;/span&gt;
 
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;if&lt;/span&gt; x&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;Not a Valid Password&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;p&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; border: 0px; box-sizing: inherit; font-family: Helvetica; font-size: 18px; margin: 0px 0px 1.5em; overflow-wrap: break-word; padding: 0px;&quot;&gt;&lt;b&gt;output:-&lt;/b&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; border: 0px; box-sizing: inherit; margin: 0px 0px 1.5em; overflow-wrap: break-word; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: Helvetica;&quot;&gt;&lt;span style=&quot;font-size: 18px;&quot;&gt;&lt;b&gt;Input your password: hello&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; border: 0px; box-sizing: inherit; margin: 0px 0px 1.5em; overflow-wrap: break-word; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: Helvetica;&quot;&gt;&lt;span style=&quot;font-size: 18px;&quot;&gt;&lt;b&gt;Not a Valid Password&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; border: 0px; box-sizing: inherit; margin: 0px 0px 1.5em; overflow-wrap: break-word; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: Helvetica;&quot;&gt;&lt;span style=&quot;font-size: 18px;&quot;&gt;&lt;b&gt;&amp;gt;&amp;gt;&amp;gt;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; border: 0px; box-sizing: inherit; margin: 0px 0px 1.5em; overflow-wrap: break-word; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: Helvetica;&quot;&gt;&lt;span style=&quot;font-size: 18px;&quot;&gt;&lt;b&gt;Input your password: hello12345@&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; border: 0px; box-sizing: inherit; margin: 0px 0px 1.5em; overflow-wrap: break-word; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: Helvetica;&quot;&gt;&lt;span style=&quot;font-size: 18px;&quot;&gt;&lt;b&gt;Not a Valid Password&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; border: 0px; box-sizing: inherit; margin: 0px 0px 1.5em; overflow-wrap: break-word; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: Helvetica;&quot;&gt;&lt;span style=&quot;font-size: 18px;&quot;&gt;&lt;b&gt;&amp;gt;&amp;gt;&amp;gt;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; border: 0px; box-sizing: inherit; margin: 0px 0px 1.5em; overflow-wrap: break-word; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: Helvetica;&quot;&gt;&lt;span style=&quot;font-size: 18px;&quot;&gt;&lt;b&gt;Input your password: Hello123@&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; border: 0px; box-sizing: inherit; margin: 0px 0px 1.5em; overflow-wrap: break-word; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: Helvetica;&quot;&gt;&lt;span style=&quot;font-size: 18px;&quot;&gt;&lt;b&gt;Valid Password&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; border: 0px; box-sizing: inherit; margin: 0px 0px 1.5em; overflow-wrap: break-word; padding: 0px;&quot;&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; border: 0px; box-sizing: inherit; margin: 0px 0px 1.5em; overflow-wrap: break-word; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: Helvetica;&quot;&gt;&lt;span style=&quot;font-size: 18px;&quot;&gt;&lt;b&gt;&amp;gt;&amp;gt;&amp;gt;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; border: 0px; box-sizing: inherit; font-family: Helvetica; font-size: 18px; margin: 0px 0px 1.5em; overflow-wrap: break-word; padding: 0px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/div&gt;</description><link>https://vikramsomai.blogspot.com/2022/04/python-program-to-check-validity-of.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6209014571885946851.post-2936215439751052899</guid><pubDate>Sun, 16 Jan 2022 15:06:00 +0000</pubDate><atom:updated>2022-01-16T20:36:09.724+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">passive-income</category><title>5 Apps to Make Money by Sharing Your Internet</title><description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;h1 class=&quot;page-heading&quot; style=&quot;background-color: white; box-sizing: inherit; color: #00084e; font-family: Geekflare, sans-serif; line-height: 1.25; margin: 0px 0px 3rem; text-align: center;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;5 Apps to Make Money by Sharing Your Internet&lt;/span&gt;&lt;/h1&gt;&lt;div&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;1.IPRoyal&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #262524; font-family: Geekflare, sans-serif; font-size: 2.1rem; line-height: 1.75; margin: 1.5rem 0px 3rem;&quot;&gt;&lt;a href=&quot;https://iproyal.com/pawns?r=453077&quot;&gt;&lt;span style=&quot;color: #ff4e00;&quot;&gt;&lt;span style=&quot;box-sizing: inherit; cursor: pointer;&quot;&gt;IPRoyal&lt;/span&gt;&lt;/span&gt;&amp;nbsp;&lt;/a&gt;is a relatively new website that few people are aware of. Although several bloggers claim it is the best website for selling internet bandwidth.&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #262524; font-family: Geekflare, sans-serif; font-size: 2.1rem; line-height: 1.75; margin: 1.5rem 0px 3rem;&quot;&gt;They pay $0.20 for every one GB of shared data.&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #262524; font-family: Geekflare, sans-serif; font-size: 2.1rem; line-height: 1.75; margin: 1.5rem 0px 3rem;&quot;&gt;The website’s user experience is straightforward.&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #262524; font-family: Geekflare, sans-serif; font-size: 2.1rem; line-height: 1.75; margin: 1.5rem 0px 3rem;&quot;&gt;Furthermore, because few people are aware of the website, you will have a better chance of sharing more bandwidth.&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #262524; font-family: Geekflare, sans-serif; font-size: 2.1rem; line-height: 1.75; margin: 1.5rem 0px 3rem;&quot;&gt;2.&lt;span style=&quot;font-size: 48px; font-weight: 700;&quot;&gt;&lt;a href=&quot;https://r.honeygain.me/VIKRACCFF1&quot;&gt;Honeygain&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #262524; font-family: Geekflare, sans-serif; font-size: 2.1rem; line-height: 1.75; margin: 1.5rem 0px 3rem;&quot;&gt;&lt;a data-wpel-link=&quot;external&quot; href=&quot;https://r.honeygain.me/VIKRACCFF1&quot; rel=&quot;noopener nofollow external&quot; style=&quot;background-color: transparent; box-sizing: inherit; color: #ff4e00; cursor: pointer; text-decoration-line: none;&quot; target=&quot;_blank&quot;&gt;Honeygain&lt;/a&gt;&amp;nbsp;is a handy and excellent web service for selling internet bandwidth around the world. For every 10 Mb of data you share, you get one credit.&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #262524; font-family: Geekflare, sans-serif; font-size: 2.1rem; line-height: 1.75; margin: 1.5rem 0px 3rem;&quot;&gt;You must have 20,000 credits, which is equal to $20, in order to check out the payment.&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #262524; font-family: Geekflare, sans-serif; font-size: 2.1rem; line-height: 1.75; margin: 1.5rem 0px 3rem;&quot;&gt;They started collecting less bandwidth from each individual as their popularity grew. For every 10 GB of data you share, you get $1.&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #262524; font-family: Geekflare, sans-serif; font-size: 2.1rem; line-height: 1.75; margin: 1.5rem 0px 3rem;&quot;&gt;This website also gives $5 as a joining bonus. They also have a referral program where you can earn a little more by inviting other people.&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #262524; font-family: Geekflare, sans-serif; font-size: 2.1rem; line-height: 1.75; margin: 1.5rem 0px 3rem;&quot;&gt;You can also estimate your earnings per month on their website.&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #262524; font-family: Geekflare, sans-serif; font-size: 2.1rem; line-height: 1.75; margin: 1.5rem 0px 3rem;&quot;&gt;3.&lt;span style=&quot;font-size: 48px; font-weight: 700;&quot;&gt;Peer2profit&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #262524; font-family: Geekflare, sans-serif; font-size: 2.1rem; line-height: 1.75; margin: 1.5rem 0px 3rem;&quot;&gt;&lt;a data-wpel-link=&quot;external&quot; href=&quot;https://peer2profit.com/r/164066821061ca9c32864c9/en&quot; rel=&quot;noopener nofollow external&quot; style=&quot;background-color: transparent; box-sizing: inherit; color: #ff4e00; cursor: pointer; text-decoration-line: none;&quot; target=&quot;_blank&quot;&gt;Peer2profit&lt;/a&gt;&amp;nbsp;is yet another fantastic peer-to-peer bandwidth-sharing network. Every month you can make $6 – $75. Remember, the larger your network, the more money you’ll make. This is one of the best options for sharing network bandwidth worldwide.&lt;/p&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;</description><link>https://vikramsomai.blogspot.com/2022/01/5-apps-to-make-money-by-sharing-your.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6209014571885946851.post-6111355208166287840</guid><pubDate>Fri, 07 Jan 2022 08:32:00 +0000</pubDate><atom:updated>2022-01-07T14:02:47.316+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Python</category><title>Python program to find those numbers which are divisible by 7 and multiple of 5, between 1500 and 2700</title><description>&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Python program to find those numbers which are divisible by 7 and multiple of 5, between 1500 and 2700&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Example 1:-&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;pre style=&quot;background: #ffffff; color: black;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;nl&lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;for&lt;/span&gt; x &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;in&lt;/span&gt; &lt;span style=&quot;color: #400000;&quot;&gt;range&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;500&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;1350&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;if&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;x&lt;span style=&quot;color: #44aadd;&quot;&gt;%&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;7&lt;/span&gt;&lt;span style=&quot;color: #44aadd;&quot;&gt;==&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt; &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;and&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;x&lt;span style=&quot;color: #44aadd;&quot;&gt;%&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;5&lt;/span&gt;&lt;span style=&quot;color: #44aadd;&quot;&gt;==&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
        nl&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;append&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #400000;&quot;&gt;str&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;x&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&#39;,&#39;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;join&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;nl&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/pre&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;output:-&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;525,560,595,630,665,700,735,770,805,840,875,910,945,980,1015,1050,1085,1120,1155,1190,1225,1260,1295,1330&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&amp;gt;&amp;gt;&amp;gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Example 2:-&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;pre style=&quot;background: #ffffff; color: black;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;for&lt;/span&gt; i &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;in&lt;/span&gt; &lt;span style=&quot;color: #400000;&quot;&gt;range&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;1500&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;2701&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;

    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;if&lt;/span&gt; i&lt;span style=&quot;color: #44aadd;&quot;&gt;%&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;7&lt;/span&gt;&lt;span style=&quot;color: #44aadd;&quot;&gt;==&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt; &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;and&lt;/span&gt; i&lt;span style=&quot;color: #44aadd;&quot;&gt;%&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;5&lt;/span&gt;&lt;span style=&quot;color: #44aadd;&quot;&gt;==&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;

        &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/pre&gt;&lt;span style=&quot;font-size: large;&quot;&gt;output:-&lt;/span&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;1505&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;1540&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;1575&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;1610&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;1645&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;1680&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;1715&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;1750&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;1785&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;1820&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;1855&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;1890&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;1925&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;1960&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;1995&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;2030&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;2065&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;2100&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;2135&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;2170&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;2205&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;2240&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;2275&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;2310&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;2345&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;2380&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;2415&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;2450&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;2485&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;2520&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;2555&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;2590&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;2625Enter the lower range:10&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Enter the upper range:1000&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;35&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;70&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;105&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;140&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;175&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;210&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;245&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;280&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;315&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;350&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;385&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;420&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;455&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;490&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;525&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;560&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;595&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;630&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;665&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;700&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;735&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;770&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;805&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;840&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;875&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;910&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;945&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;980&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&amp;gt;&amp;gt;&amp;gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;2660&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;2695&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&amp;gt;&amp;gt;&amp;gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Example 3:-&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;pre style=&quot;background: #ffffff; color: black;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;lower&lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #400000;&quot;&gt;int&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #400000;&quot;&gt;input&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;Enter the lower range:&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
upper&lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #400000;&quot;&gt;int&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #400000;&quot;&gt;input&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;Enter the upper range:&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;for&lt;/span&gt; i &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;in&lt;/span&gt; &lt;span style=&quot;color: #400000;&quot;&gt;range&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;lower&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;upper&lt;span style=&quot;color: #44aadd;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;if&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;i&lt;span style=&quot;color: #44aadd;&quot;&gt;%&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;7&lt;/span&gt;&lt;span style=&quot;color: #44aadd;&quot;&gt;==&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt; &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;and&lt;/span&gt; i&lt;span style=&quot;color: #44aadd;&quot;&gt;%&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;5&lt;/span&gt;&lt;span style=&quot;color: #44aadd;&quot;&gt;==&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
        &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/pre&gt;&lt;span style=&quot;font-size: large;&quot;&gt;output:-&lt;/span&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description><link>https://vikramsomai.blogspot.com/2022/01/python-program-to-find-numbers-divisible-by-7-and-multiple-of-5-in-a-given-range.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6209014571885946851.post-7742534756778883036</guid><pubDate>Tue, 04 Jan 2022 12:32:00 +0000</pubDate><atom:updated>2022-01-04T18:02:31.499+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Python</category><title>Python program that accepts a word from the user and reverse </title><description>&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Write a Python program that accepts a word from the user and reverse it&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Example 1:-&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;background-color: white;&quot;&gt;word &lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;background-color: white;&quot;&gt; input&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Input a word to reverse: &lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;pre style=&quot;background: #ffffff; color: black;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;for&lt;/span&gt; &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;char&lt;/span&gt; in range&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;len&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;word&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;-&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;:&lt;/span&gt;
  print&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;word&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;char&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; end&lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;

&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: #ffffff; color: black;&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;output:-&lt;/span&gt;&lt;/b&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Input a word to reverse: word
drow
&amp;gt;&amp;gt;&amp;gt; &lt;/span&gt;&lt;/b&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Example 2:-&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;pre style=&quot;background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; background-position: initial; background-repeat: initial; background-size: initial;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;color: dimgrey;&quot;&gt;# Python code to reverse a string&lt;/span&gt;
&lt;span style=&quot;color: dimgrey;&quot;&gt;# using loop&lt;/span&gt;

&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;def&lt;/span&gt; reverse&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;word&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
 &lt;span style=&quot;color: #400000;&quot;&gt;str&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;&quot;&lt;/span&gt;
 &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;for&lt;/span&gt; i &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;in&lt;/span&gt; word&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
    &lt;span style=&quot;color: #400000;&quot;&gt;str&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; i &lt;span style=&quot;color: #44aadd;&quot;&gt;+&lt;/span&gt; &lt;span style=&quot;color: #400000;&quot;&gt;str&lt;/span&gt;
 &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;return&lt;/span&gt; &lt;span style=&quot;color: #400000;&quot;&gt;str&lt;/span&gt;

word&lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #400000;&quot;&gt;input&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;enter the string: &quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;

&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;The original string is : &quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;end&lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;word&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;

&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;The reversed string(using loops) is : &quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;end&lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;reverse&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;word&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/pre&gt;&lt;span style=&quot;font-size: large;&quot;&gt;
&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;output:-&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;enter the string: hello
The original string is : hello
The reversed string(using loops) is : olleh&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Example 3:-&lt;/span&gt;&lt;/pre&gt;&lt;h1 style=&quot;box-sizing: border-box; color: #212529; font-family: system-ui, -apple-system, &amp;quot;Segoe UI&amp;quot;, Roboto, &amp;quot;Helvetica Neue&amp;quot;, Arial, &amp;quot;Noto Sans&amp;quot;, &amp;quot;Liberation Sans&amp;quot;, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;, &amp;quot;Segoe UI Symbol&amp;quot;, &amp;quot;Noto Color Emoji&amp;quot;; font-weight: 500; line-height: 1.2; margin-bottom: 0.5rem; margin-top: 0px;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Python Program to Reverse Words in a Given String in Python&lt;/span&gt;&lt;/h1&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;
&lt;/span&gt;&lt;pre style=&quot;background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; background-position: initial; background-repeat: initial; background-size: initial;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;def&lt;/span&gt; rev_words&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;string&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;  
    words &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; string&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;split&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&#39; &#39;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt; 
    rev &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #0000e6;&quot;&gt;&#39; &#39;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;join&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #400000;&quot;&gt;reversed&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;words&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt; 
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;return&lt;/span&gt; rev
 
s&lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #400000;&quot;&gt;input&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;enter the string: &quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;reverse: &quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;rev_words&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;s&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;

&lt;/span&gt;&lt;/pre&gt;&lt;span style=&quot;font-size: large;&quot;&gt;output:-&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;enter the string: hello world
reverse:  world hello
&amp;gt;&amp;gt;&amp;gt; &lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Example 4:-&lt;/span&gt;&lt;/pre&gt;&lt;h1 style=&quot;background-color: white; box-sizing: inherit; font-family: &amp;quot;Segoe UI&amp;quot;, Arial, sans-serif; font-weight: 400; margin: 10px 0px;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Reverse a String in Python&lt;/span&gt;&lt;/h1&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;pre style=&quot;background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; background-position: initial; background-repeat: initial; background-size: initial;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;txt &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;Hello World&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;&lt;span style=&quot;color: #44aadd;&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;txt&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/pre&gt;&lt;span style=&quot;font-size: large;&quot;&gt;output:-&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;dlroW olleH&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Tag:-&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;How to reverse a string in Python?&lt;/span&gt;&lt;/pre&gt;</description><link>https://vikramsomai.blogspot.com/2022/01/reverse-string-python-program.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6209014571885946851.post-6421052445949576069</guid><pubDate>Tue, 04 Jan 2022 07:26:00 +0000</pubDate><atom:updated>2022-01-04T13:54:14.684+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Python</category><title>Python program to count the number of even and odd numbers from a series of numbers</title><description>&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Python program to count the number of even and odd numbers from a series of numbers&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Example 1:- Count even or odd using for loop&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;pre style=&quot;background: rgb(255, 255, 255); color: black;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;numbers &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;2&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;4&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;6&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;3&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;9&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;8&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;11&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
count_odd &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;
count_even &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;for&lt;/span&gt; x &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;in&lt;/span&gt; numbers&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
        &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;if&lt;/span&gt; &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;not&lt;/span&gt; x &lt;span style=&quot;color: #44aadd;&quot;&gt;%&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;2&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
             count_even&lt;span style=&quot;color: #44aadd;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;
        &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;else&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
             count_odd&lt;span style=&quot;color: #44aadd;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;Number of even numbers :&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;count_even&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;Number of odd numbers :&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;count_odd&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/pre&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;output:-&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Number of even numbers : 4&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Number of odd numbers : 4&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&amp;gt;&amp;gt;&amp;gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Example 2:-&lt;/span&gt;&lt;/p&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;numbers &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;10&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;2&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;4&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;3&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;5&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;68&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;93&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;3&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;9&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;4&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt; 

even&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; odd&lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;

&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;for&lt;/span&gt; i &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;in&lt;/span&gt; numbers&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt; 

    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;if&lt;/span&gt; i &lt;span style=&quot;color: #44aadd;&quot;&gt;%&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;2&lt;/span&gt; &lt;span style=&quot;color: #44aadd;&quot;&gt;==&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt; 

        even &lt;span style=&quot;color: #44aadd;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;

    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;else&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt; 

        odd&lt;span style=&quot;color: #44aadd;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;          

&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;Even : &quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; even&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt; 

&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;Odd : &quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; odd&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;output:-&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Even :  5
Odd :  5
&amp;gt;&amp;gt;&amp;gt; &lt;/span&gt;&lt;/pre&gt;&lt;h2 style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Count Even and Odd in List Using Lambda Function&lt;/span&gt;&lt;/h2&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Example 3-&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;pre style=&quot;background: rgb(255, 255, 255); color: black;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;numbers &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;4&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;2&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;7&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;8&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;11&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;2&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;3&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;66&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;

even_list &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #400000;&quot;&gt;list&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #400000;&quot;&gt;filter&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;lambda&lt;/span&gt; x&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;x &lt;span style=&quot;color: #44aadd;&quot;&gt;%&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;2&lt;/span&gt; &lt;span style=&quot;color: #44aadd;&quot;&gt;==&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; numbers&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;

odd_list &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #400000;&quot;&gt;list&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #400000;&quot;&gt;filter&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;lambda&lt;/span&gt; x&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;x &lt;span style=&quot;color: #44aadd;&quot;&gt;%&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;2&lt;/span&gt; &lt;span style=&quot;color: #44aadd;&quot;&gt;!=&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; numbers&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;

&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;{0} even numbes and {1} odds.&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;format&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #400000;&quot;&gt;len&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;even_list&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #400000;&quot;&gt;len&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;odd_list&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;output:-&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;5 even numbes and 4 odds.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&amp;gt;&amp;gt;&amp;gt;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;h2 style=&quot;background-color: white; border: 0px; box-sizing: inherit; color: #222222; font-family: -apple-system, system-ui, BlinkMacSystemFont, &amp;quot;segoe ui&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;apple color emoji&amp;quot;, &amp;quot;segoe ui emoji&amp;quot;, &amp;quot;segoe ui symbol&amp;quot;; font-weight: 400; line-height: 1.2em; margin: 0px; padding: 0px; text-align: left;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Python Program to Count Even and Odd Numbers in a List&lt;/span&gt;&lt;/h2&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Example 4:-&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;pre style=&quot;background: #ffffff; color: black;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;NumList &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;
Even_count &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;
Odd_count &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;

Number &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #400000;&quot;&gt;int&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #400000;&quot;&gt;input&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;Please enter the Total Number of List Elements: &quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;for&lt;/span&gt; i &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;in&lt;/span&gt; &lt;span style=&quot;color: #400000;&quot;&gt;range&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; Number &lt;span style=&quot;color: #44aadd;&quot;&gt;+&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
    value &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #400000;&quot;&gt;int&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #400000;&quot;&gt;input&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;Please enter the Value of %d Element : &quot;&lt;/span&gt; &lt;span style=&quot;color: #44aadd;&quot;&gt;%&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
    NumList&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;append&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;value&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;

&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;for&lt;/span&gt; j &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;in&lt;/span&gt; &lt;span style=&quot;color: #400000;&quot;&gt;range&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;Number&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;if&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;NumList&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;j&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt; &lt;span style=&quot;color: #44aadd;&quot;&gt;%&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;2&lt;/span&gt; &lt;span style=&quot;color: #44aadd;&quot;&gt;==&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
        Even_count &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; Even_count &lt;span style=&quot;color: #44aadd;&quot;&gt;+&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;else&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
        Odd_count &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; Odd_count &lt;span style=&quot;color: #44aadd;&quot;&gt;+&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;

&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\n&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Total Number of Even Numbers in this List =  &quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; Even_count&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;Total Number of Odd Numbers in this List = &quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; Odd_count&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;output:-&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Please enter the Total Number of List Elements: 4&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Please enter the Value of 1 Element : 3&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Please enter the Value of 2 Element : 1&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Please enter the Value of 3 Element : 6&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Please enter the Value of 4 Element : 8&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Total Number of Even Numbers in this List =&amp;nbsp; &amp;nbsp;2&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Total Number of Odd Numbers in this List =&amp;nbsp; 2&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&amp;gt;&amp;gt;&amp;gt;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;h2 id=&quot;h-python-program-to-count-even-and-odd-numbers-in-a-list-using-while-loop&quot; style=&quot;background-color: white; border: 0px; box-sizing: inherit; color: #222222; font-family: -apple-system, system-ui, BlinkMacSystemFont, &amp;quot;segoe ui&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;apple color emoji&amp;quot;, &amp;quot;segoe ui emoji&amp;quot;, &amp;quot;segoe ui symbol&amp;quot;; font-weight: 400; line-height: 1.2em; margin: 0px 0px 20px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Python Program to Count Even and Odd Numbers in a List using While loop&lt;/span&gt;&lt;/h2&gt;&lt;/div&gt;&lt;div&gt;&lt;pre style=&quot;background: rgb(255, 255, 255); color: black;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;NumList &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;
Even_count &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;
Odd_count &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;
j &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;

Number &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #400000;&quot;&gt;int&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #400000;&quot;&gt;input&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;Please enter the Total Number of List Elements: &quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;for&lt;/span&gt; i &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;in&lt;/span&gt; &lt;span style=&quot;color: #400000;&quot;&gt;range&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; Number &lt;span style=&quot;color: #44aadd;&quot;&gt;+&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
    value &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #400000;&quot;&gt;int&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #400000;&quot;&gt;input&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;Please enter the Value of %d Element : &quot;&lt;/span&gt; &lt;span style=&quot;color: #44aadd;&quot;&gt;%&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
    NumList&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;append&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;value&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;

&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;while&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;j &lt;span style=&quot;color: #44aadd;&quot;&gt;&amp;lt;&lt;/span&gt; Number&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;if&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;NumList&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;j&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt; &lt;span style=&quot;color: #44aadd;&quot;&gt;%&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;2&lt;/span&gt; &lt;span style=&quot;color: #44aadd;&quot;&gt;==&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
        Even_count &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; Even_count &lt;span style=&quot;color: #44aadd;&quot;&gt;+&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;else&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
        Odd_count &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; Odd_count &lt;span style=&quot;color: #44aadd;&quot;&gt;+&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;
    j &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; j &lt;span style=&quot;color: #44aadd;&quot;&gt;+&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;

&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\n&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Total Number of Even Numbers in this List =  &quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; Even_count&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;Total Number of Odd Numbers in this List = &quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; Odd_count&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255); color: black;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;output:-&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Please enter the Total Number of List Elements: 4
Please enter the Value of 1 Element : 3
Please enter the Value of 2 Element : 7
Please enter the Value of 3 Element : 8
Please enter the Value of 4 Element : 1

Total Number of Even Numbers in this List =   1
Total Number of Odd Numbers in this List =  3
&amp;gt;&amp;gt;&amp;gt; &lt;/span&gt;&lt;/pre&gt;&lt;span style=&quot;font-size: medium;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;/div&gt;</description><link>https://vikramsomai.blogspot.com/2022/01/python-program-to-count-even-and-odd-numbers.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6209014571885946851.post-3748275978420581322</guid><pubDate>Mon, 03 Jan 2022 13:59:00 +0000</pubDate><atom:updated>2022-01-03T19:47:17.554+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">jquery</category><title>JQuery Tutorial</title><description>&lt;p&gt;&amp;nbsp;&lt;span style=&quot;background-color: white; font-family: &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: 27pt;&quot;&gt;jQuery&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot; style=&quot;background-color: white; font-family: &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: 27pt;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;colorh1&quot; style=&quot;background-color: white; font-family: &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: 27pt;&quot;&gt;Introduction&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 12.0pt;&quot;&gt;The purpose of jQuery is to make
it much easier to use JavaScript on your website.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt; mso-outline-level: 2;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt;&quot;&gt;What You Should Already Know&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: 150%; margin-bottom: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; line-height: 150%;&quot;&gt;Before you start studying jQuery, you should have a basic
knowledge of:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l36 level1 lfo1; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;HTML&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l36 level1 lfo1; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;CSS&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l36 level1 lfo1; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;JavaScript&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt; mso-outline-level: 2;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt;&quot;&gt;What is jQuery?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoListParagraphCxSpFirst&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; mso-add-space: auto; mso-list: l42 level1 lfo4; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 10.0pt; mso-bidi-font-family: Symbol; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;jQuery is a lightweight,
&quot;write less, do more&quot;, JavaScript library.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoListParagraphCxSpMiddle&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; mso-add-space: auto; mso-list: l42 level1 lfo4; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 10.0pt; mso-bidi-font-family: Symbol; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The purpose of jQuery is to make
it much easier to use JavaScript on your website.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoListParagraphCxSpMiddle&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; mso-add-space: auto; mso-list: l42 level1 lfo4; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 10.0pt; mso-bidi-font-family: Symbol; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;jQuery takes a lot of common
tasks that require many lines of JavaScript code to accomplish, and wraps them
into methods that you can call with a single line of code.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoListParagraphCxSpMiddle&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; mso-add-space: auto; mso-list: l42 level1 lfo4; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 10.0pt; mso-bidi-font-family: Symbol; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;jQuery also simplifies a lot of
the complicated things from JavaScript, like &lt;st1:city w:st=&quot;on&quot;&gt;&lt;st1:place w:st=&quot;on&quot;&gt;AJAX&lt;/st1:place&gt;&lt;/st1:city&gt; calls and DOM manipulation.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoListParagraphCxSpMiddle&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; mso-add-space: auto; mso-list: l42 level1 lfo4; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 10.0pt; mso-bidi-font-family: Symbol; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The jQuery library contains the
following features:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoListParagraphCxSpLast&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; mso-add-space: auto;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: .75in; margin-right: 0in; margin-top: 0in; mso-list: l39 level1 lfo5; tab-stops: list .75in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Wingdings; font-size: 10.0pt; mso-bidi-font-family: Wingdings; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Wingdings;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;ü&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;HTML/DOM
manipulation&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: .75in; margin-right: 0in; margin-top: 0in; mso-list: l39 level1 lfo5; tab-stops: list .75in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Wingdings; font-size: 10.0pt; mso-bidi-font-family: Wingdings; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Wingdings;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;ü&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;CSS
manipulation&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: .75in; margin-right: 0in; margin-top: 0in; mso-list: l39 level1 lfo5; tab-stops: list .75in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Wingdings; font-size: 10.0pt; mso-bidi-font-family: Wingdings; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Wingdings;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;ü&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;HTML
event methods&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: .75in; margin-right: 0in; margin-top: 0in; mso-list: l39 level1 lfo5; tab-stops: list .75in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Wingdings; font-size: 10.0pt; mso-bidi-font-family: Wingdings; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Wingdings;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;ü&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Effects
and animations&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: .75in; margin-right: 0in; margin-top: 0in; mso-list: l39 level1 lfo5; tab-stops: list .75in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Wingdings; font-size: 10.0pt; mso-bidi-font-family: Wingdings; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Wingdings;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;ü&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;st1:city w:st=&quot;on&quot;&gt;&lt;st1:place w:st=&quot;on&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;AJAX&lt;/span&gt;&lt;/st1:place&gt;&lt;/st1:city&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: .75in; margin-right: 0in; margin-top: 0in; mso-list: l39 level1 lfo5; tab-stops: list .75in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Wingdings; font-size: 10.0pt; mso-bidi-font-family: Wingdings; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Wingdings;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;ü&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Utilities&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt; mso-outline-level: 2;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt;&quot;&gt;Why jQuery?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoListParagraphCxSpFirst&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; mso-add-space: auto; mso-list: l42 level1 lfo4; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 10.0pt; mso-bidi-font-family: Symbol; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;There are lots of other
JavaScript frameworks out there, but jQuery seems to be the most popular, and
also the most extendable.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoListParagraphCxSpMiddle&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; mso-add-space: auto; mso-list: l42 level1 lfo4; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 10.0pt; mso-bidi-font-family: Symbol; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Many of the biggest companies on
the Web use jQuery, such as:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoListParagraphCxSpMiddle&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in; mso-add-space: auto; mso-list: l9 level2 lfo6; tab-stops: list 1.0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Wingdings; font-size: 10.0pt; mso-bidi-font-family: Wingdings; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Wingdings;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;ü&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Google&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoListParagraphCxSpMiddle&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in; mso-add-space: auto; mso-list: l9 level2 lfo6; tab-stops: list 1.0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Wingdings; font-size: 10.0pt; mso-bidi-font-family: Wingdings; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Wingdings;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;ü&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Microsoft&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoListParagraphCxSpMiddle&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in; mso-add-space: auto; mso-list: l9 level2 lfo6; tab-stops: list 1.0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Wingdings; font-size: 10.0pt; mso-bidi-font-family: Wingdings; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Wingdings;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;ü&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;IBM&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoListParagraphCxSpLast&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in; mso-add-space: auto; mso-list: l9 level2 lfo6; tab-stops: list 1.0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Wingdings; font-size: 10.0pt; mso-bidi-font-family: Wingdings; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Wingdings;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;ü&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Netflix&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #365f91; font-family: &amp;quot;Cambria&amp;quot;,serif; font-size: 14.0pt; line-height: 115%; mso-ansi-language: EN-US; mso-bidi-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-language: AR-SA; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: EN-US;&quot;&gt;&lt;br clear=&quot;all&quot; style=&quot;page-break-before: always;&quot; /&gt;
&lt;/span&gt;&lt;/b&gt;

&lt;h1 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 27.0pt; font-weight: normal; line-height: 115%;&quot;&gt;jQuery&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;colorh1&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;Get Started&lt;/span&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h1&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt; mso-outline-level: 2;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt;&quot;&gt;Adding jQuery to Your Web Pages&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: 16.9pt; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;There are several ways to start
using jQuery on your web site. You can:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: 16.9pt; mso-list: l35 level1 lfo25; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Download the jQuery library from jQuery.com&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: 16.9pt; mso-list: l35 level1 lfo25; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Include jQuery from a CDN, like Google&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;Downloading jQuery&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;There are
two versions of jQuery available for downloading:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: 16.9pt; mso-list: l30 level1 lfo26; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Production version - this is for your live website
     because it has been minified and compressed&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: 16.9pt; mso-list: l30 level1 lfo26; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Development version - this is for testing and
     development (uncompressed and readable code)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Both
versions can be downloaded from&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;a href=&quot;http://jquery.com/download/&quot; target=&quot;_blank&quot;&gt;jQuery.com&lt;/a&gt;.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
jQuery library is a single JavaScript file, and you reference it with the HTML
&amp;lt;script&amp;gt; tag (notice that the &amp;lt;script&amp;gt; tag should be inside the
&amp;lt;head&amp;gt; section):&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: Consolas;&quot;&gt;&amp;lt;head&amp;gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Consolas;&quot;&gt;&lt;br /&gt;
&lt;span style=&quot;background: white;&quot;&gt;&amp;lt;script
src=&quot;jquery-1.12.0.min.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background: white;&quot;&gt;&amp;lt;/head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt; mso-outline-level: 2;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt;&quot;&gt;jQuery CDN&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: 16.9pt; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;If you don&#39;t want to download and
host jQuery yourself, you can include it from a CDN (Content Delivery Network).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: 16.9pt; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Both Google and Microsoft host
jQuery.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: 16.9pt; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;To use jQuery from Google or
Microsoft, use one of the following:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: Consolas;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h3 style=&quot;margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 18.0pt; font-weight: normal; line-height: 115%;&quot;&gt;Google CDN:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h3&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: Consolas;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: Consolas;&quot;&gt;&amp;lt;head&amp;gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Consolas;&quot;&gt;&lt;br /&gt;
&lt;span style=&quot;background: white;&quot;&gt;&amp;lt;script
src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background: white;&quot;&gt;&amp;lt;/head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h3 style=&quot;margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 18.0pt; font-weight: normal; line-height: 115%;&quot;&gt;Microsoft CDN:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h3&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: Consolas;&quot;&gt;&amp;lt;head&amp;gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Consolas;&quot;&gt;&lt;br /&gt;
&lt;span style=&quot;background: white;&quot;&gt;&amp;lt;script
src=&quot;http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.0.min.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background: white;&quot;&gt;&amp;lt;/head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Calibri&amp;quot;,sans-serif; font-size: 11.0pt; line-height: 115%; mso-ansi-language: EN-US; mso-bidi-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-language: AR-SA; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: EN-US;&quot;&gt;&lt;br clear=&quot;all&quot; style=&quot;mso-special-character: line-break; page-break-before: always;&quot; /&gt;
&lt;/span&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h1 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 27.0pt; font-weight: normal; line-height: 115%;&quot;&gt;jQuery&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;colorh1&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;Syntax&lt;/span&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h1&gt;

&lt;p class=&quot;MsoListParagraphCxSpFirst&quot; style=&quot;line-height: normal; margin-bottom: 0in; mso-add-space: auto; mso-list: l19 level1 lfo13; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;With jQuery you select (query) HTML elements and
perform &quot;actions&quot; on them.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoListParagraphCxSpLast&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; mso-add-space: auto; mso-list: l19 level1 lfo13; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 11.5pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The jQuery syntax is tailor-made
for&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-size: 11.0pt;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;selecting&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-size: 11.0pt;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;HTML elements and performing some&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-size: 11.0pt;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;action&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-size: 11.0pt;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;on the element(s).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: 16.9pt; margin-left: 1.0in; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Basic
syntax is:&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-size: 11.0pt;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;$(&lt;i&gt;selector&lt;/i&gt;).&lt;i&gt;action&lt;/i&gt;()&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: 16.9pt; mso-list: l13 level1 lfo7; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;A $ sign to define/access jQuery&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: 16.9pt; mso-list: l13 level1 lfo7; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;A (&lt;i&gt;selector&lt;/i&gt;) to &quot;query (or find)&quot;
     HTML elements&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: 16.9pt; mso-list: l13 level1 lfo7; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;A jQuery&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-size: 11.0pt;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;i&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;action&lt;/span&gt;&lt;/i&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;() to
     be performed on the element(s)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Examples:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;$(this).hide()
- hides the current element.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;$(&quot;p&quot;).hide()
- hides all &amp;lt;p&amp;gt; elements.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;$(&quot;.test&quot;).hide()
- hides all elements with class=&quot;test&quot;.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;$(&quot;#test&quot;).hide()
- hides the element with id=&quot;test&quot;.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 6.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;The Document Ready Event&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l41 level1 lfo12; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 11.5pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;You
might have noticed that all jQuery methods in our examples, are inside a
document ready event:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: 0in; margin-left: 103.7pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: Consolas;&quot;&gt;$(document).ready(function(){&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Consolas;&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;background: white;&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;font-family: Consolas;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;i&gt;// jQuery methods go here...&lt;/i&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;background: white;&quot;&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoListParagraphCxSpFirst&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; mso-add-space: auto; mso-list: l1 level1 lfo9; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 10.0pt; mso-bidi-font-family: Symbol; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;This is to prevent any jQuery
code from running before the document is finished loading (is ready).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoListParagraphCxSpMiddle&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; mso-add-space: auto; mso-list: l1 level1 lfo9; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 10.0pt; mso-bidi-font-family: Symbol; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;It is good practice to wait for
the document to be fully loaded and ready before working with it. This also
allows you to have your JavaScript code before the body of your document, in
the head section.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoListParagraphCxSpLast&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; mso-add-space: auto; mso-list: l1 level1 lfo9; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 10.0pt; mso-bidi-font-family: Symbol; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Here are some examples of actions
that can fail if methods are run before the document is fully loaded:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: .75in; margin-right: 0in; margin-top: 0in; mso-list: l21 level1 lfo10; tab-stops: list .75in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Wingdings; font-size: 10.0pt; mso-bidi-font-family: Wingdings; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Wingdings;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;ü&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Trying
to hide an element that is not created yet&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: .75in; margin-right: 0in; margin-top: 0in; mso-list: l21 level1 lfo10; tab-stops: list .75in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Wingdings; font-size: 10.0pt; mso-bidi-font-family: Wingdings; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Wingdings;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;ü&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Trying
to get the size of an image that is not loaded yet&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoListParagraph&quot; style=&quot;line-height: normal; margin-bottom: 0in; mso-add-space: auto; mso-list: l23 level1 lfo11; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 11.5pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;There is even a shorter method for the document ready event:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: 0in; margin-left: 103.7pt; margin-right: 0in; margin-top: 0in; tab-stops: 103.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: Consolas;&quot;&gt;$(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: 0in; margin-left: 103.7pt; margin-right: 0in; margin-top: 0in; tab-stops: 103.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Consolas;&quot;&gt;&lt;br /&gt;
&lt;span style=&quot;background: white;&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;font-family: Consolas;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;i&gt;// jQuery methods go
here...&lt;/i&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background: white;&quot;&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoListParagraph&quot; style=&quot;line-height: normal; margin-bottom: 0in; mso-add-space: auto; mso-list: l23 level1 lfo11; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 11.5pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Any of the method can be used.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 27.0pt; mso-ansi-language: EN-US; mso-bidi-language: AR-SA; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: EN-US;&quot;&gt;&lt;br clear=&quot;all&quot; style=&quot;page-break-before: always;&quot; /&gt;
&lt;/span&gt;

&lt;h1 style=&quot;background: white; line-height: normal; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 27.0pt; font-weight: normal;&quot;&gt;jQuery&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;colorh1&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;Selectors&lt;/span&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h1&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l23 level1 lfo11; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 11.5pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;jQuery
selectors allow you to select and manipulate HTML element(s).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l23 level1 lfo11; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 11.5pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;jQuery
selectors are used to &quot;find&quot; (or select) HTML elements based on their
id, classes, types, attributes, values of attributes and much more. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l23 level1 lfo11; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 11.5pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;All
selectors in jQuery start with the dollar sign and parentheses: $().&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;The element Selector&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l23 level1 lfo11; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 11.5pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
jQuery element selector selects elements based on the element name.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l23 level1 lfo11; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 11.5pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;You
can select all &amp;lt;p&amp;gt; elements on a page like this:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: Consolas;&quot;&gt;$(&quot;p&quot;)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin: 0in;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Example&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l32 level1 lfo14; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 11.5pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;When
a user clicks on a button, all &amp;lt;p&amp;gt; elements will be hidden:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;$(document).ready(function(){&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;button&quot;).click(function(){&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;p&quot;).hide();&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;br /&gt;
});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;The #id Selector&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l23 level1 lfo11; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 11.5pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
jQuery #id selector uses the id attribute of an HTML tag to find the specific
element.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l23 level1 lfo11; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 11.5pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;An
id should be unique within a page, so you should use the #id selector when you
want to find a single, unique element.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l23 level1 lfo11; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 11.5pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;To
find an element with a specific id, write a hash character, followed by the id
of the HTML element:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: Consolas;&quot;&gt;$(&quot;#test&quot;)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin: 0in;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Example&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l23 level1 lfo11; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 11.5pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;When
a user clicks on a button, the element with id=&quot;test&quot; will be hidden:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;$(document).ready(function(){&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;button&quot;).click(function(){&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;#test&quot;).hide();&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;br /&gt;
});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;The .class Selector&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l23 level1 lfo11; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 11.5pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
jQuery class selector finds elements with a specific class.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l23 level1 lfo11; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 11.5pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;To
find elements with a specific class, write a period character, followed by the
name of the class:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: Consolas;&quot;&gt;$(&quot;.test&quot;)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin: 0in;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Example&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l29 level1 lfo15; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;When a user clicks on a button,
the element with &lt;span style=&quot;background: white;&quot;&gt;class=&quot;test&quot; will be
hidden&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: Consolas;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;$(document).ready(function(){&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;button&quot;).click(function(){&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;.test&quot;).hide();&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;br /&gt;
});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;More Examples of jQuery
Selectors&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;table border=&quot;1&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;MsoNormalTable&quot; style=&quot;background: white; border-collapse: collapse; border: none; mso-border-alt: solid #CCCCCC .75pt; width: 480px;&quot;&gt;
 &lt;tbody&gt;&lt;tr style=&quot;height: .3in; mso-height-rule: exactly; mso-yfti-firstrow: yes; mso-yfti-irow: 0;&quot;&gt;
  &lt;td style=&quot;border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt; width: 139.05pt;&quot; valign=&quot;top&quot; width=&quot;185&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.0pt; line-height: 115%;&quot;&gt;Syntax&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt; width: 220.95pt;&quot; valign=&quot;top&quot; width=&quot;295&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-size: 10.0pt; line-height: 115%; mso-color-alt: windowtext;&quot;&gt;Description&lt;/span&gt;&lt;/b&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.0pt; line-height: 115%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;height: .3in; mso-height-rule: exactly; mso-yfti-irow: 1;&quot;&gt;
  &lt;td style=&quot;background: #F1F1F1; border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-size: 10.0pt; line-height: 115%; mso-color-alt: windowtext;&quot;&gt;$(&quot;*&quot;)&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.0pt; line-height: 115%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: #F1F1F1; border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-size: 10.0pt; line-height: 115%; mso-color-alt: windowtext;&quot;&gt;Selects all elements&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.0pt; line-height: 115%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;height: .3in; mso-height-rule: exactly; mso-yfti-irow: 2;&quot;&gt;
  &lt;td style=&quot;border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-size: 10.0pt; line-height: 115%; mso-color-alt: windowtext;&quot;&gt;$(this)&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.0pt; line-height: 115%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-size: 10.0pt; line-height: 115%; mso-color-alt: windowtext;&quot;&gt;Selects the current HTML element&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.0pt; line-height: 115%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;height: .3in; mso-height-rule: exactly; mso-yfti-irow: 3;&quot;&gt;
  &lt;td style=&quot;background: #F1F1F1; border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-size: 10.0pt; line-height: 115%; mso-color-alt: windowtext;&quot;&gt;$(&quot;p.intro&quot;)&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.0pt; line-height: 115%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: #F1F1F1; border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-size: 10.0pt; line-height: 115%; mso-color-alt: windowtext;&quot;&gt;Selects all &amp;lt;p&amp;gt; elements with
  class=&quot;intro&quot;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.0pt; line-height: 115%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;height: .3in; mso-height-rule: exactly; mso-yfti-irow: 4;&quot;&gt;
  &lt;td style=&quot;border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-size: 10.0pt; line-height: 115%; mso-color-alt: windowtext;&quot;&gt;$(&quot;p:first&quot;)&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.0pt; line-height: 115%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-size: 10.0pt; line-height: 115%; mso-color-alt: windowtext;&quot;&gt;Selects the first &amp;lt;p&amp;gt; element&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.0pt; line-height: 115%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;height: .3in; mso-height-rule: exactly; mso-yfti-irow: 5;&quot;&gt;
  &lt;td style=&quot;background: #F1F1F1; border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-size: 10.0pt; line-height: 115%; mso-color-alt: windowtext;&quot;&gt;$(&quot;ul li:first&quot;)&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.0pt; line-height: 115%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: #F1F1F1; border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-size: 10.0pt; line-height: 115%; mso-color-alt: windowtext;&quot;&gt;Selects the first &amp;lt;li&amp;gt; element of
  the first &amp;lt;ul&amp;gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.0pt; line-height: 115%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;height: .3in; mso-height-rule: exactly; mso-yfti-irow: 6;&quot;&gt;
  &lt;td style=&quot;border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-size: 10.0pt; line-height: 115%; mso-color-alt: windowtext;&quot;&gt;$(&quot;ul li:first-child&quot;)&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.0pt; line-height: 115%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-size: 10.0pt; line-height: 115%; mso-color-alt: windowtext;&quot;&gt;Selects the first &amp;lt;li&amp;gt; element of
  every &amp;lt;ul&amp;gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.0pt; line-height: 115%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;height: .3in; mso-height-rule: exactly; mso-yfti-irow: 7;&quot;&gt;
  &lt;td style=&quot;background: #F1F1F1; border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-size: 10.0pt; line-height: 115%; mso-color-alt: windowtext;&quot;&gt;$(&quot;[href]&quot;)&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.0pt; line-height: 115%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: #F1F1F1; border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-size: 10.0pt; line-height: 115%; mso-color-alt: windowtext;&quot;&gt;Selects all elements with an href
  attribute&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.0pt; line-height: 115%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;height: .3in; mso-height-rule: exactly; mso-yfti-irow: 8;&quot;&gt;
  &lt;td style=&quot;border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-size: 10.0pt; line-height: 115%; mso-color-alt: windowtext;&quot;&gt;$(&quot;a[target=&#39;_blank&#39;]&quot;)&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.0pt; line-height: 115%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-size: 10.0pt; line-height: 115%; mso-color-alt: windowtext;&quot;&gt;Selects all &amp;lt;a&amp;gt; elements with a
  target attribute value equal to &quot;_blank&quot;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.0pt; line-height: 115%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;height: .3in; mso-height-rule: exactly; mso-yfti-irow: 9;&quot;&gt;
  &lt;td style=&quot;background: #F1F1F1; border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-size: 10.0pt; line-height: 115%; mso-color-alt: windowtext;&quot;&gt;$(&quot;a[target!=&#39;_blank&#39;]&quot;)&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.0pt; line-height: 115%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: #F1F1F1; border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-size: 10.0pt; line-height: 115%; mso-color-alt: windowtext;&quot;&gt;Selects all &amp;lt;a&amp;gt; elements without
  a target attribute value NOT equal to &quot;_blank&quot;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.0pt; line-height: 115%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;height: .3in; mso-height-rule: exactly; mso-yfti-irow: 10;&quot;&gt;
  &lt;td style=&quot;border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-size: 10.0pt; line-height: 115%; mso-color-alt: windowtext;&quot;&gt;$(&quot;:button&quot;)&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.0pt; line-height: 115%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-size: 10.0pt; line-height: 115%; mso-color-alt: windowtext;&quot;&gt;Selects all &amp;lt;button&amp;gt; elements and
  &amp;lt;input&amp;gt; elements of type=&quot;button&quot;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.0pt; line-height: 115%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;height: .3in; mso-height-rule: exactly; mso-yfti-irow: 11;&quot;&gt;
  &lt;td style=&quot;background: #F1F1F1; border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-size: 10.0pt; line-height: 115%; mso-color-alt: windowtext;&quot;&gt;$(&quot;tr:even&quot;)&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.0pt; line-height: 115%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: #F1F1F1; border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-size: 10.0pt; line-height: 115%; mso-color-alt: windowtext;&quot;&gt;Selects all even &amp;lt;tr&amp;gt; elements&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.0pt; line-height: 115%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;height: .3in; mso-height-rule: exactly; mso-yfti-irow: 12; mso-yfti-lastrow: yes;&quot;&gt;
  &lt;td style=&quot;border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-size: 10.0pt; line-height: 115%; mso-color-alt: windowtext;&quot;&gt;$(&quot;tr:odd&quot;)&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.0pt; line-height: 115%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-size: 10.0pt; line-height: 115%; mso-color-alt: windowtext;&quot;&gt;Selects all odd &amp;lt;tr&amp;gt; elements&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size: 10.0pt; line-height: 115%;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;Functions In a Separate
File&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;If your
website contains a lot of pages, and you want your jQuery functions to be easy
to maintain, you can put your jQuery functions in a separate .js file.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;When we
demonstrate jQuery in this tutorial, the functions are added directly into the
&amp;lt;head&amp;gt; section. However, sometimes it is preferable to place them in a
separate file,&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: Consolas;&quot;&gt; &lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;like this (use the src attribute to refer to
the .js file):&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: Consolas;&quot;&gt;&amp;lt;head&amp;gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Consolas;&quot;&gt;&lt;br /&gt;
&lt;span style=&quot;background: white;&quot;&gt;&amp;lt;script
src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js&quot;&amp;gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background: white;&quot;&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span class=&quot;marked&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #e80000; font-family: Consolas;&quot;&gt;&amp;lt;script
src=&quot;my_jquery_functions.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Consolas;&quot;&gt;&lt;br /&gt;
&lt;span style=&quot;background: white;&quot;&gt;&amp;lt;/head&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; line-height: 115%; mso-ansi-language: EN-US; mso-bidi-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-language: AR-SA; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: EN-US;&quot;&gt;&lt;br clear=&quot;all&quot; style=&quot;page-break-before: always;&quot; /&gt;
&lt;/span&gt;&lt;/b&gt;

&lt;h1 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 27.0pt; font-weight: normal; line-height: 115%;&quot;&gt;jQuery&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;colorh1&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;Event Methods&lt;/span&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h1&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: #3333ff; line-height: normal; margin-bottom: 0in; mso-list: l5 level1 lfo17; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;jQuery is tailor-made to respond to events in an HTML page.&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;What are Events?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l5 level1 lfo17; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Symbol; font-size: 11.0pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.0pt;&quot;&gt;All the
different visitor&#39;s actions that a web page can respond to are called events.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l5 level1 lfo17; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Symbol; font-size: 11.0pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.0pt;&quot;&gt;An event
represents the precise moment when something happens.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l5 level1 lfo17; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Symbol; font-size: 11.0pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.0pt;&quot;&gt;Examples:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in; mso-list: l20 level1 lfo20; tab-stops: list 1.5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Wingdings; font-size: 10.0pt; mso-bidi-font-family: Wingdings; mso-bidi-font-size: 11.0pt; mso-fareast-font-family: Wingdings;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;ü&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;moving
a mouse over an element&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in; mso-list: l20 level1 lfo20; tab-stops: list 1.5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Wingdings; font-size: 10.0pt; mso-bidi-font-family: Wingdings; mso-bidi-font-size: 11.0pt; mso-fareast-font-family: Wingdings;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;ü&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;selecting
a radio button&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in; mso-list: l20 level1 lfo20; tab-stops: list 1.5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Wingdings; font-size: 10.0pt; mso-bidi-font-family: Wingdings; mso-bidi-font-size: 11.0pt; mso-fareast-font-family: Wingdings;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;ü&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;clicking
on an element&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l5 level1 lfo17; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Symbol; font-size: 11.0pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.0pt;&quot;&gt;The term&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-size: 11.0pt; mso-color-alt: windowtext;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.0pt;&quot;&gt;&quot;fires/fired&quot;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-size: 11.0pt; mso-color-alt: windowtext;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.0pt;&quot;&gt;is often used
with events. Example: &quot;The keypress event is fired, the moment you press a
key&quot;.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l5 level1 lfo17; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Symbol; font-size: 11.0pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.0pt;&quot;&gt;Here are some
common DOM events:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l5 level1 lfo17; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Symbol; font-size: 11.0pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.0pt;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;table border=&quot;1&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;MsoNormalTable&quot; style=&quot;background: white; border-collapse: collapse; border: none; margin-left: 24.0pt; mso-border-alt: solid #CCCCCC .75pt; width: 576px;&quot;&gt;
 &lt;tbody&gt;&lt;tr style=&quot;height: .3in; mso-height-rule: exactly; mso-yfti-firstrow: yes; mso-yfti-irow: 0;&quot;&gt;
  &lt;td style=&quot;border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt; width: 87.05pt;&quot; valign=&quot;top&quot; width=&quot;116&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;Mouse
  Events&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt; width: 120.4pt;&quot; valign=&quot;top&quot; width=&quot;161&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;Keyboard Events&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt; width: 105.6pt;&quot; valign=&quot;top&quot; width=&quot;141&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;Form Events&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt; width: 118.95pt;&quot; valign=&quot;top&quot; width=&quot;159&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;Document/Window Events&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;height: .3in; mso-height-rule: exactly; mso-yfti-irow: 1;&quot;&gt;
  &lt;td style=&quot;background: #F1F1F1; border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt; width: 87.05pt;&quot; valign=&quot;top&quot; width=&quot;116&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;click&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: #F1F1F1; border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;keypress&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: #F1F1F1; border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;submit&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: #F1F1F1; border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt; width: 118.95pt;&quot; valign=&quot;top&quot; width=&quot;159&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;load&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;height: .3in; mso-height-rule: exactly; mso-yfti-irow: 2;&quot;&gt;
  &lt;td style=&quot;border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt; width: 87.05pt;&quot; valign=&quot;top&quot; width=&quot;116&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;dblclick&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;keydown&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;change&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt; width: 118.95pt;&quot; valign=&quot;top&quot; width=&quot;159&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;resize&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;height: .3in; mso-height-rule: exactly; mso-yfti-irow: 3;&quot;&gt;
  &lt;td style=&quot;background: #F1F1F1; border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt; width: 87.05pt;&quot; valign=&quot;top&quot; width=&quot;116&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;mouseenter&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: #F1F1F1; border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;keyup&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: #F1F1F1; border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;focus&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: #F1F1F1; border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt; width: 118.95pt;&quot; valign=&quot;top&quot; width=&quot;159&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;scroll&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;height: .3in; mso-height-rule: exactly; mso-yfti-irow: 4; mso-yfti-lastrow: yes;&quot;&gt;
  &lt;td style=&quot;border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt; width: 87.05pt;&quot; valign=&quot;top&quot; width=&quot;116&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;mouseleave&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt;&quot; valign=&quot;top&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;blur&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;border: none; height: .3in; mso-height-rule: exactly; padding: 6.0pt 6.0pt 6.0pt 6.0pt; width: 118.95pt;&quot; valign=&quot;top&quot; width=&quot;159&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;unload&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: .25in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;jQuery Syntax For Event
Methods&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p style=&quot;background: white; margin-left: .5in; mso-list: l27 level1 lfo21; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Symbol; font-size: 11.5pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;In
jQuery, most DOM events have an equivalent jQuery method.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin-left: .5in; mso-list: l27 level1 lfo21; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Symbol; font-size: 11.5pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;To
assign a click event to all paragraphs on a page, you can do this:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-left: 1.5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Consolas;&quot;&gt;$(&quot;p&quot;).click();&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Consolas; font-size: 12.0pt;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin-left: .5in; mso-list: l28 level1 lfo22; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Symbol; font-size: 11.5pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
next step is to define what should happen when the event fires. You must pass a
function to the event:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-left: 1.5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Consolas;&quot;&gt;$(&quot;p&quot;).click(function(){&lt;br /&gt;
&amp;nbsp; // action goes here!!&lt;br /&gt;
});&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Consolas; font-size: 12.0pt;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: .25in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: .25in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: .25in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin: 0in;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Example : &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;When a click
event fires on a &amp;lt;p&amp;gt; element; hide the current &amp;lt;p&amp;gt; element&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: .25in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&amp;lt;html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&amp;lt;head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&amp;lt;script
src=&quot;jquery-2.1.4.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&amp;lt;script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;$(document).ready(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;$(&quot;p&quot;).click(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;$(this).hide();&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&amp;lt;/head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&amp;lt;body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&amp;lt;p&amp;gt;If
you click on me, I will disappear.&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&amp;lt;p&amp;gt;Click
me away!&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&amp;lt;p&amp;gt;Click
me too!&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&amp;lt;/body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&amp;lt;/html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;dblclick()&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
dblclick() method attaches an event handler function to an HTML element.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;mouseenter()&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
mouseenter() method attaches an event handler function to an HTML element.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;mouseleave()&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
mouseleave() method attaches an event handler function to an HTML element.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;mousedown()&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
mousedown() method attaches an event handler function to an HTML element.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;mouseup()&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
mouseup() method attaches an event handler function to an HTML element.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;hover()&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
hover() method takes two functions and is a combination of the mouseenter() and
mouseleave() methods.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;focus()&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
focus() method attaches an event handler function to an HTML form field.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;blur()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The blur()
method attaches an event handler function to an HTML form field.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;The on() Method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: 16.9pt; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The on() method attaches one or
more event handlers for the selected elements.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; line-height: 115%; mso-ansi-language: EN-US; mso-bidi-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-language: AR-SA; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: EN-US;&quot;&gt;&lt;br clear=&quot;all&quot; style=&quot;page-break-before: always;&quot; /&gt;
&lt;/span&gt;&lt;/b&gt;

&lt;h1 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 27.0pt; font-weight: normal; line-height: 115%;&quot;&gt;jQuery
Effects&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h1&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: maroon; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-weight: normal;&quot;&gt;jQuery hide() , show() &amp;amp; toggle()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l5 level1 lfo17; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Symbol; font-size: 11.0pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.0pt;&quot;&gt;You can hide and
show HTML elements with the hide() and show() methods:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l5 level1 lfo17; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Symbol; font-size: 11.0pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.0pt;&quot;&gt;You can toggle
between the hide() and show() methods with the toggle() method.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: .5in; margin-right: 0in; margin-top: 7.5pt; mso-list: l28 level1 lfo22; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Symbol; font-size: 11.5pt; font-weight: normal; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-weight: normal;&quot;&gt;Syntax:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; line-height: 150%; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 14.0pt; font-weight: normal; line-height: 150%; mso-bidi-font-weight: bold;&quot;&gt;$(&lt;i&gt;selector&lt;/i&gt;).hide(&lt;i&gt;speed,callback&lt;/i&gt;);&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: blue; font-family: Consolas; font-size: 14.0pt; font-weight: normal; line-height: 150%; mso-bidi-font-weight: bold;&quot;&gt;&lt;br /&gt;
&lt;span style=&quot;background: white;&quot;&gt;$(&lt;i&gt;selector&lt;/i&gt;).show(&lt;i&gt;speed,callback&lt;/i&gt;);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in; text-indent: .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 14.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;$(&lt;i&gt;selector&lt;/i&gt;).toggle(&lt;i&gt;speed,callback&lt;/i&gt;);&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: blue; font-family: Consolas; font-size: 14.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;br style=&quot;mso-special-character: line-break;&quot; /&gt;
&lt;!--[if !supportLineBreakNewLine]--&gt;&lt;br style=&quot;mso-special-character: line-break;&quot; /&gt;
&lt;!--[endif]--&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; font-weight: normal; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l28 level1 lfo22; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Symbol; font-size: 11.5pt; font-weight: normal; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol; mso-fareast-language: JA;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; font-weight: normal; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;The
optional speed parameter specifies the speed of the hiding/showing, and can
take the following values: &quot;slow&quot;, &quot;fast&quot;, or milliseconds.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;ul type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; mso-list: l28 level1 lfo22; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;The optional callback parameter is a function to be executed after the
     hide() or show() or toggle() method completes.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: .5in; margin-right: 0in; margin-top: 7.5pt; mso-list: l28 level1 lfo22; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Symbol; font-size: 11.5pt; font-weight: normal; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-weight: normal;&quot;&gt;Example:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;$(&quot;#hide&quot;).click(function(){&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;p&quot;).hide();&lt;br /&gt;
});&lt;br /&gt;
&lt;br /&gt;
$(&quot;#show&quot;).click(function(){&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;p&quot;).show();&lt;br /&gt;
});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;$(&quot;button&quot;).click(function(){&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;p&quot;).toggle();&lt;br /&gt;
});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #3333ff; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-ansi-language: EN-US; mso-bidi-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-language: AR-SA; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: EN-US;&quot;&gt;&lt;br clear=&quot;all&quot; style=&quot;page-break-before: always;&quot; /&gt;
&lt;/span&gt;&lt;/b&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: maroon; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-weight: normal;&quot;&gt;jQuery Fading Methods&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l38 level1 lfo27; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;With
     jQuery you can fade an element in and out of visibility.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l38 level1 lfo27; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;jQuery
     has the following fade methods:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: .75in; margin-right: 0in; margin-top: 0in; mso-list: l6 level1 lfo28; tab-stops: list .75in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Courier New&amp;quot;; font-size: 10.0pt; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;o&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;fadeIn()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: .75in; margin-right: 0in; margin-top: 0in; mso-list: l6 level1 lfo28; tab-stops: list .75in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Courier New&amp;quot;; font-size: 10.0pt; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;o&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;fadeOut()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: .75in; margin-right: 0in; margin-top: 0in; mso-list: l6 level1 lfo28; tab-stops: list .75in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Courier New&amp;quot;; font-size: 10.0pt; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;o&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;fadeToggle()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: .75in; margin-right: 0in; margin-top: 0in; mso-list: l6 level1 lfo28; tab-stops: list .75in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Courier New&amp;quot;; font-size: 10.0pt; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;o&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;fadeTo()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 6.0pt; mso-list: l28 level1 lfo22; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Symbol; font-size: 11.5pt; font-weight: normal; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-weight: normal;&quot;&gt;Syntax:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 14.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;$(&lt;i&gt;selector&lt;/i&gt;).fadeIn(&lt;i&gt;speed,callback&lt;/i&gt;);&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: blue; font-family: Consolas; font-size: 14.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;br /&gt;
&lt;span style=&quot;background: white;&quot;&gt;$(&lt;i&gt;selector&lt;/i&gt;).fadeOut(&lt;i&gt;speed,callback&lt;/i&gt;);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in; text-indent: .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 14.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(selector).fadeToggle(speed,callback);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in; text-indent: .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 14.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(selector).fadeTo(speed,opacity,callback);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l28 level1 lfo22; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;The required
     speed parameter specifies the duration of the effect. It can take the
     following values: &quot;slow&quot;, &quot;fast&quot;, or milliseconds.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l28 level1 lfo22; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;The required
     opacity parameter in the fadeTo() method specifies fading to a given
     opacity (value between 0 and 1).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l28 level1 lfo22; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;The optional
     callback parameter is a function to be executed after the function
     completes.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 6.0pt; mso-list: l28 level1 lfo22; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Symbol; font-size: 11.5pt; font-weight: normal; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-weight: normal;&quot;&gt;Example:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;$(&quot;button&quot;).click(function(){&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;#div1&quot;).fadeIn();&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;#div2&quot;).fadeIn(&quot;slow&quot;);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;#div3&quot;).fadeIn(3000);&lt;br /&gt;
});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;$(&quot;button&quot;).click(function(){&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;#div1&quot;).fadeOut();&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;#div2&quot;).fadeOut(&quot;slow&quot;);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;#div3&quot;).fadeOut(3000);&lt;br /&gt;
});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;$(&quot;button&quot;).click(function(){&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;#div1&quot;).fadeToggle();&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;#div2&quot;).fadeToggle(&quot;slow&quot;);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;#div3&quot;).fadeToggle(3000);&lt;br /&gt;
});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;$(&quot;button&quot;).click(function(){&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;#div1&quot;).fadeTo(&quot;slow&quot;, 0.15);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;#div2&quot;).fadeTo(&quot;slow&quot;, 0.4);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;#div3&quot;).fadeTo(&quot;slow&quot;, 0.7);&lt;br /&gt;
});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;span lang=&quot;EN-US&quot; style=&quot;color: maroon; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 18.0pt; mso-ansi-language: EN-US; mso-bidi-language: AR-SA; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: EN-US;&quot;&gt;&lt;br clear=&quot;all&quot; style=&quot;page-break-before: always;&quot; /&gt;
&lt;/span&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: maroon; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-weight: normal;&quot;&gt;jQuery Sliding Methods&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l38 level1 lfo27; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;With
     jQuery you can create a sliding effect on elements.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l38 level1 lfo27; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;jQuery
     has the following slide methods:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;circle&quot;&gt;
  &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l29 level2 lfo15; tab-stops: list 1.0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;slideDown()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
  &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l29 level2 lfo15; tab-stops: list 1.0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;slideUp()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
  &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l29 level2 lfo15; tab-stops: list 1.0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;slideToggle(&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;/ul&gt;
&lt;/ul&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 6.0pt; mso-list: l28 level1 lfo22; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Symbol; font-size: 11.5pt; font-weight: normal; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-weight: normal;&quot;&gt;Syntax:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 14.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;$(&lt;i&gt;selector&lt;/i&gt;).slideDown(&lt;i&gt;speed,callback&lt;/i&gt;);&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: blue; font-family: Consolas; font-size: 14.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;br /&gt;
&lt;span style=&quot;background: white;&quot;&gt;$(&lt;i&gt;selector&lt;/i&gt;).slideUp(&lt;i&gt;speed,callback&lt;/i&gt;);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in; text-indent: .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 14.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(selector).slideToggle(speed,callback);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l28 level1 lfo22; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Symbol; font-size: 11.5pt; font-weight: normal; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol; mso-fareast-language: JA;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; font-weight: normal; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;The
optional speed parameter specifies the speed of the hiding/showing, and can
take the following values: &quot;slow&quot;, &quot;fast&quot;, or milliseconds.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l28 level1 lfo22; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Symbol; font-size: 11.5pt; font-weight: normal; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol; mso-fareast-language: JA;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; font-weight: normal; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;The
optional callback parameter is a function to be executed after the sliding
completes.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 6.0pt; mso-list: l28 level1 lfo22; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Symbol; font-size: 11.5pt; font-weight: normal; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-weight: normal;&quot;&gt;Example:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script
src=&quot;jquery-2.1.4.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script&amp;gt;
&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;$(document).ready(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;$(&quot;#flip&quot;).click(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;$(&quot;#panel&quot;).slideToggle(&quot;slow&quot;);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;style&amp;gt;
&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;#panel,
#flip {&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;padding: 5px;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;text-align: center;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;background-color: #e5eecc;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;border: solid 1px #c3c3c3;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;}&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;#panel
{&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&lt;/span&gt;padding:
50px;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;display : none; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;}&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/style&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&lt;/span&gt;&amp;lt;div id=&quot;flip&quot;&amp;gt;Click to slide the
panel down and up &amp;lt;/div&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&lt;/span&gt;&amp;lt;div id=&quot;panel&quot;&amp;gt;Hello
world!&amp;lt;/div&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; mso-ansi-language: EN-US; mso-bidi-language: AR-SA; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: EN-US;&quot;&gt;&lt;br clear=&quot;all&quot; style=&quot;page-break-before: always;&quot; /&gt;
&lt;/span&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt; mso-outline-level: 2;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt;&quot;&gt;jQuery Animations - The animate() Method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l28 level1 lfo22; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;The jQuery
     animate() method is used to create custom animations.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Syntax:&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-left: 1.5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 14.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(selector).animate({params},speed,callback);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l28 level1 lfo22; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;The required
     params parameter defines the CSS properties to be animated.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l28 level1 lfo22; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;The optional
     speed parameter specifies the duration of the effect. It can take the
     following values: &quot;slow&quot;, &quot;fast&quot;, or milliseconds.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l28 level1 lfo22; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;The optional
     callback parameter is a function to be executed after the animation
     completes.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 6.0pt; mso-list: l28 level1 lfo22; tab-stops: list .5in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Symbol; font-size: 11.5pt; font-weight: normal; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-weight: normal;&quot;&gt;Example:&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; font-weight: normal; mso-bidi-font-weight: bold; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;The following example demonstrates a simple use of the animate() method;
it moves a &amp;lt;div&amp;gt; element to the right, until it has reached a left
property of 250px:&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; font-weight: normal;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script
src=&quot;jquery-2.1.4.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script&amp;gt;
&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in; text-indent: .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;$(document).ready(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 2.0in; margin-right: 0in; margin-top: 0in; text-indent: .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;$(&quot;button&quot;).click(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;mso-tab-count: 2;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;$(&quot;div&quot;).animate({left:
&#39;250px&#39; });&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/script&amp;gt;
&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;button&amp;gt;Start
Animation&amp;lt;/button&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;p&amp;gt;By
default, all HTML elements have a static position, and cannot be moved. To
manipulate the position, remember to first set the CSS position property of the
element to relative, fixed, or absolute!&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;div
style=&quot;background:green;height:100px;width:100px;position:absolute;&quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-ansi-language: EN-US; mso-bidi-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-font-weight: bold; mso-bidi-language: AR-SA; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: EN-US;&quot;&gt;&lt;br clear=&quot;all&quot; style=&quot;page-break-before: always;&quot; /&gt;
&lt;/span&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;jQuery stop() Method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l28 level1 lfo22; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;The jQuery
     stop() method is used to stop an animation or effect before it is
     finished.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l28 level1 lfo22; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;The stop()
     method works for all jQuery effect functions, including sliding, fading
     and custom animations.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Syntax:&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; text-indent: .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 14.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(selector).stop(stopAll,goToEnd);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l28 level1 lfo22; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;The optional
     stopAll parameter specifies whether also the animation queue should be
     cleared or not. Default is false, which means that only the active
     animation will be stopped, allowing any queued animations to be performed
     afterwards.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l28 level1 lfo22; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;The optional
     goToEnd parameter specifies whether or not to complete the current
     animation immediately. Default is false.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l28 level1 lfo22; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;So, by
     default, the stop() method kills the current animation being performed on
     the selected element.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l28 level1 lfo22; tab-stops: list .5in;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Example:&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt; The following example
     demonstrates the stop() method, with no parameters:&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt; &lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&amp;lt;html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script
src=&quot;jquery-2.1.4.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script&amp;gt;
&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;$(document).ready(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;$(&quot;#flip&quot;).click(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;$(&quot;#panel&quot;).slideDown(5000);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;$(&quot;#stop&quot;).click(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;$(&quot;#panel&quot;).stop();&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;style&amp;gt;
&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;#panel,
#flip {&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;padding: 5px;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;font-size: 18px;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;text-align: center;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;background-color: #555;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;color: white;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;}&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;#panel
{&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;padding: 50px;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;display: none;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;}&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/style&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in; text-indent: .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;button id=&quot;stop&quot;&amp;gt;Stop sliding&amp;lt;/button&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in; text-indent: .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;div id=&quot;flip&quot;&amp;gt;Click to slide down panel&amp;lt;/div&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in; text-indent: .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;div id=&quot;panel&quot;&amp;gt;Hello world!&amp;lt;/div&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt;&quot;&gt;jQuery Callback Functions&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l28 level1 lfo22; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;JavaScript
     statements are executed line by line. However, with effects, the next line
     of code can be run even though the effect is not finished. This can create
     errors.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l28 level1 lfo22; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;To prevent
     this, you can create a callback function.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l28 level1 lfo22; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;A callback
     function is executed after the current effect is 100% finished.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: .25in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Syntax:&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-left: 1.5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 14.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(selector).hide(speed,callback);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;Example:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l28 level1 lfo22; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;The example
     below has a callback parameter that is a function that will be executed
     after the hide effect is completed:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;margin-left: 1.5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; line-height: 115%; mso-bidi-font-weight: bold;&quot;&gt;$(&quot;button&quot;).click(function(){&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;p&quot;).hide(&quot;slow&quot;, function(){&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; alert(&quot;The paragraph is now
hidden&quot;);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;br /&gt;
});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;color: black; line-height: normal; margin-bottom: 0in; mso-list: l29 level1 lfo15; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
     example below has no callback parameter, and the alert box will be displayed
     before the hide effect is completed:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: Consolas;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;margin-left: 1.5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; line-height: 115%; mso-bidi-font-weight: bold;&quot;&gt;$(&quot;button&quot;).click(function(){&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;p&quot;).hide(1000);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; alert(&quot;The paragraph is now hidden&quot;);&lt;br /&gt;
});&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #365f91; font-family: &amp;quot;Cambria&amp;quot;,serif; font-size: 14.0pt; line-height: 115%; mso-ansi-language: EN-US; mso-bidi-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-language: AR-SA; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: EN-US;&quot;&gt;&lt;br clear=&quot;all&quot; style=&quot;page-break-before: always;&quot; /&gt;
&lt;/span&gt;&lt;/b&gt;

&lt;h1 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 27.0pt; font-weight: normal; line-height: 115%;&quot;&gt;jQuery -&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;colorh1&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;Chaining&lt;/span&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h1&gt;

&lt;p class=&quot;intro&quot; style=&quot;background: white;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;With jQuery, you can chain together
actions/methods.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l28 level1 lfo22; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;Chaining
     allows us to run multiple jQuery methods (on the same element) within a
     single statement.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l28 level1 lfo22; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&lt;/span&gt;It allows us to run multiple jQuery
     commands, one after the other, on the same element(s).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l28 level1 lfo22; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;To chain an
     action, you simply append the action to the previous action.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l28 level1 lfo22; tab-stops: list .5in;&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;Example:&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;
     The following example chains together the css(), slideUp(), and
     slideDown() methods&lt;/span&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(&quot;#p1&quot;).css(&quot;color&quot;,&quot;red&quot;)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;.slideUp(2000)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;.slideDown(2000);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; line-height: 115%; mso-ansi-language: EN-US; mso-bidi-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-language: AR-SA; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: EN-US;&quot;&gt;&lt;br clear=&quot;all&quot; style=&quot;page-break-before: always;&quot; /&gt;
&lt;/span&gt;&lt;/b&gt;

&lt;h1 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 27.0pt; font-weight: normal; line-height: 115%;&quot;&gt;jQuery
HTML&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h1&gt;

&lt;h1 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 27.0pt; font-weight: normal; line-height: 115%;&quot;&gt;jQuery -&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;colorh1&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;Get Content and
Attributes&lt;/span&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h1&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;jQuery
contains powerful methods for changing and manipulating HTML elements and
attributes&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;There
are three jQuery methods for DOM manipulation are:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l7 level1 lfo29; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;text()
     - Sets or returns the text content of selected elements&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l7 level1 lfo29; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;html()
     - Sets or returns the content of selected elements (including HTML markup)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l7 level1 lfo29; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;val()
     - Sets or returns the value of form fields&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: 0in; mso-list: l29 level1 lfo15; tab-stops: list .5in;&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;Example:&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt; The following example demonstrates how to
     get content with the jQuery text() and html() methods:&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;$(&quot;#btn1&quot;).click(function(){&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; alert(&quot;Text: &quot; + $(&quot;#test&quot;).text());&lt;br /&gt;
});&lt;br /&gt;
$(&quot;#btn2&quot;).click(function(){&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; alert(&quot;HTML: &quot; + $(&quot;#test&quot;).html());&lt;br /&gt;
});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; font-weight: normal;&quot;&gt;The following example
demonstrates how to get the value of an input field with the jQuery val()
method:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;$(&quot;#btn1&quot;).click(function(){&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; alert(&quot;Value: &quot; + $(&quot;#test&quot;).val());&lt;br /&gt;
});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;Get Attributes - attr()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p style=&quot;background: white; margin: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The jQuery attr() method is used
to get attribute values.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The following example
demonstrates how to get the value of the href attribute in a link:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script
src=&quot;/jquery-2.1.4.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;$(document).ready(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;$(&quot;button&quot;).click(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;alert($(&quot;#g&quot;).attr(&quot;href&quot;));&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;p&amp;gt;&amp;lt;a
href=&quot;http://www.google.com&quot; id=&quot;g&quot;&amp;gt;Google&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;button&amp;gt;Show
href Value&amp;lt;/button&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h1 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 27.0pt; font-weight: normal; line-height: 115%;&quot;&gt;jQuery -&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;colorh1&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;Set Content and
Attributes&lt;/span&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h1&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;We
will use the same three methods from the previous page to&amp;nbsp;set content:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;color: black; line-height: normal; margin-bottom: 0in; mso-list: l29 level1 lfo15; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;text() - Sets or
     returns the text content of selected elements&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;color: black; line-height: normal; margin-bottom: 0in; mso-list: l29 level1 lfo15; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;html() - Sets or
     returns the content of selected elements (including HTML markup)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;color: black; line-height: normal; margin-bottom: 0in; mso-list: l29 level1 lfo15; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;val() - Sets or
     returns the value of form fields&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;color: black; line-height: normal; margin-bottom: 0in; mso-list: l29 level1 lfo15; tab-stops: list .5in;&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;Example:&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt; The following example demonstrates
     how to set content with the jQuery text(), html(), and val() methods:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script
src=&quot;jquery/2.1.4.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;$(document).ready(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;$(&quot;#btn1&quot;).click(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;$(&quot;#test1&quot;).text(&quot;Hello
world!&quot;);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;$(&quot;#btn2&quot;).click(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;#test2&quot;).html(&quot;&amp;lt;b&amp;gt;Hello world!&amp;lt;/b&amp;gt;&quot;);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;$(&quot;#btn3&quot;).click(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;$(&quot;#test3&quot;).val(&quot;BHARUCH&quot;);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;p
id=&quot;test1&quot;&amp;gt;This is a paragraph.&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;p
id=&quot;test2&quot;&amp;gt;This is another paragraph.&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;p&amp;gt;Input
field: &amp;lt;input type=&quot;text&quot; id=&quot;test3&quot; value=&quot;&lt;st1:place w:st=&quot;on&quot;&gt;&lt;st1:city w:st=&quot;on&quot;&gt;SURAT&lt;/st1:city&gt;&lt;/st1:place&gt;&quot;&amp;gt;&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;button
id=&quot;btn1&quot;&amp;gt;Set Text&amp;lt;/button&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;button
id=&quot;btn2&quot;&amp;gt;Set HTML&amp;lt;/button&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;button
id=&quot;btn3&quot;&amp;gt;Set Value&amp;lt;/button&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;Set Attributes - attr()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;color: black; line-height: normal; margin-bottom: 0in; mso-list: l29 level1 lfo15; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;The jQuery
     attr() method is also used to set/change single or multiple attribute
     values.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;color: black; line-height: normal; margin-bottom: 0in; mso-list: l29 level1 lfo15; tab-stops: list .5in;&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;Example:&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt; The following example demonstrates
     how to change (set) the value of the href attribute in a link:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;$(&quot;button&quot;).click(function(){&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;#g&quot;).attr(&quot;href&quot;, &quot;http://www.google.com&quot;);&lt;br /&gt;
});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.0pt; font-weight: normal;&quot;&gt;The following example
demonstrates how to change (set) the multiple value of the href attribute in a
link&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; font-weight: normal; mso-bidi-font-weight: bold;&quot;&gt;$(&quot;button&quot;).click(function(){&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;#g&quot;).attr({&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &quot;href&quot; : &quot;http://www.google.com&quot;,&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &quot;title&quot; : &quot;Google
Website&quot;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;br /&gt;
});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; line-height: 115%; mso-ansi-language: EN-US; mso-bidi-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-font-weight: bold; mso-bidi-language: AR-SA; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: EN-US;&quot;&gt;&lt;br clear=&quot;all&quot; style=&quot;page-break-before: always;&quot; /&gt;
&lt;/span&gt;

&lt;h1 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 27.0pt; font-weight: normal; line-height: 115%;&quot;&gt;jQuery -&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;colorh1&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;Add Elements&lt;/span&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h1&gt;

&lt;p style=&quot;background: white; margin: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;Following four &lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;jQuery
methods are used to add new content:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l40 level1 lfo31; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;append()
     - Inserts content at the end of the selected elements&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l40 level1 lfo31; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;prepend()
     - Inserts content at the beginning of the selected elements&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l40 level1 lfo31; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;after()
     - Inserts content after the selected elements&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l40 level1 lfo31; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;before()
     - Inserts content before the selected elements&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;append() Method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;color: black; line-height: normal; margin-bottom: 0in; mso-list: l29 level1 lfo15; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;Inserts content
     AT THE END of the selected HTML elements.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script src=&quot;jquery2.1.4.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(document).ready(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;#btn1&quot;).click(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;$(&quot;p&quot;).append(&quot;
&amp;lt;b&amp;gt;Appended text&amp;lt;/b&amp;gt;.&quot;);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;#btn2&quot;).click(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;ol&quot;).append(&quot;&amp;lt;li&amp;gt;Appended
item&amp;lt;/li&amp;gt;&quot;);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;p&amp;gt;This is a paragraph.&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;p&amp;gt;This is another paragraph.&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;ol&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;
&lt;/span&gt;&amp;lt;li&amp;gt;List item 1&amp;lt;/li&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;
&lt;/span&gt;&amp;lt;li&amp;gt;List item 2&amp;lt;/li&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;
&lt;/span&gt;&amp;lt;li&amp;gt;List item 3&amp;lt;/li&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/ol&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;button id=&quot;btn1&quot;&amp;gt;Append
text&amp;lt;/button&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;button id=&quot;btn2&quot;&amp;gt;Append list
items&amp;lt;/button&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in; text-indent: .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; mso-ansi-language: EN-US; mso-bidi-language: AR-SA; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: EN-US;&quot;&gt;&lt;br clear=&quot;all&quot; style=&quot;page-break-before: always;&quot; /&gt;
&lt;/span&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;prepend() Method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;color: black; line-height: normal; margin-bottom: 0in; mso-list: l29 level1 lfo15; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;Inserts content
     AT THE BEGINNING of the selected HTML elements.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(document).ready(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;#btn1&quot;).click(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;p&quot;).prepend(&quot;&amp;lt;b&amp;gt;Prepended text&amp;lt;/b&amp;gt;.
&quot;);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;#btn2&quot;).click(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;ol&quot;).prepend(&quot;&amp;lt;li&amp;gt;Prepended
item&amp;lt;/li&amp;gt;&quot;);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;after() and before()
Methods&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;color: black; line-height: normal; margin-bottom: 0in; mso-list: l29 level1 lfo15; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;The jQuery
     after() method inserts content AFTER the selected HTML elements.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;color: black; line-height: normal; margin-bottom: 0in; mso-list: l29 level1 lfo15; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;The jQuery
     before() method inserts content BEFORE the selected HTML elements.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script src=&quot;jquery-2.1.4.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(document).ready(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;#btn1&quot;).click(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;img&quot;).before(&quot;&amp;lt;b&amp;gt;Before&amp;lt;/b&amp;gt;&quot;);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;#btn2&quot;).click(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;img&quot;).after(&quot;&amp;lt;i&amp;gt;After&amp;lt;/i&amp;gt;&quot;);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;img src=&quot;Bluehills.jpeg&quot; width=&quot;100&quot;
height=&quot;140&quot;&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;button id=&quot;btn1&quot;&amp;gt;Insert
before&amp;lt;/button&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;button id=&quot;btn2&quot;&amp;gt;Insert
after&amp;lt;/button&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; line-height: 115%; mso-ansi-language: EN-US; mso-bidi-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-language: AR-SA; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: EN-US;&quot;&gt;&lt;br clear=&quot;all&quot; style=&quot;page-break-before: always;&quot; /&gt;
&lt;/span&gt;&lt;/b&gt;

&lt;h1 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 27.0pt; font-weight: normal; line-height: 115%;&quot;&gt;jQuery -&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;colorh1&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;Remove Elements&lt;/span&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h1&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;color: black; line-height: normal; margin-bottom: 0in; mso-list: l29 level1 lfo15; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;To remove
     elements and content, there are mainly two jQuery methods:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;circle&quot;&gt;
  &lt;li class=&quot;MsoNormal&quot; style=&quot;color: black; line-height: normal; margin-bottom: 0in; mso-list: l29 level2 lfo15; tab-stops: list 1.0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;remove() -
      Removes the selected element (and its child elements)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
  &lt;li class=&quot;MsoNormal&quot; style=&quot;color: black; line-height: normal; margin-bottom: 0in; mso-list: l29 level2 lfo15; tab-stops: list 1.0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;empty() -
      Removes the child elements from the selected element&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;/ul&gt;
&lt;/ul&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;remove() Method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;color: black; line-height: normal; margin-bottom: 0in; mso-list: l29 level1 lfo15; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;The jQuery
     remove() method removes the selected element(s) and its child elements.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script src=&quot;jquery-2.1.4.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(document).ready(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;button&quot;).click(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;#div1&quot;).remove();&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;div id=&quot;div1&quot;
style=&quot;height:100px;width:300px;border:1px solid
black;background-color:yellow;&quot;&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;This is some text in the div.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;p&amp;gt;This is a paragraph in the div.&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;p&amp;gt;This is another paragraph in the
div.&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/div&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;br&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;button&amp;gt;Remove div element&amp;lt;/button&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;empty() Method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;color: black; line-height: normal; margin-bottom: 0in; mso-list: l29 level1 lfo15; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;The jQuery
     empty() method removes the child elements of the selected element(s).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(document).ready(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;button&quot;).click(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;$(&quot;#div1&quot;).empty();&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: 0in; margin-left: .25in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: 0in; margin-left: .25in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: 0in; margin-left: .25in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: 0in; margin-left: .25in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 18.0pt; mso-ansi-language: EN-US; mso-bidi-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-language: AR-SA; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: EN-US;&quot;&gt;&lt;br clear=&quot;all&quot; style=&quot;page-break-before: always;&quot; /&gt;
&lt;/span&gt;&lt;/b&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;jQuery Manipulating CSS&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: 16.9pt; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;jQuery has several methods for
CSS manipulation. We will look at the following methods:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: 16.9pt; mso-list: l33 level1 lfo33; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;addClass() - Adds one or more classes to the
     selected elements&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: 16.9pt; mso-list: l33 level1 lfo33; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;removeClass() - Removes one or more classes from the
     selected elements&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: 16.9pt; mso-list: l33 level1 lfo33; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;toggleClass() - Toggles between adding/removing
     classes from the selected elements&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: 16.9pt; mso-list: l33 level1 lfo33; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;css() - Sets or returns the style attribute&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: 16.9pt; mso-list: l33 level1 lfo33; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Let us consider following style sheet example:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: normal; margin-bottom: 0in; margin-left: 117.0pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: brown; font-family: Consolas; font-size: 12.0pt;&quot;&gt;.important&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: Consolas; font-size: 12.0pt;&quot;&gt;{&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Consolas; font-size: 12.0pt;&quot;&gt;&lt;br /&gt;
&lt;span style=&quot;background: white;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: red; font-family: Consolas; font-size: 12.0pt;&quot;&gt;font-weight:&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: mediumblue; font-family: Consolas; font-size: 12.0pt;&quot;&gt;&amp;nbsp;bold;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Consolas; font-size: 12.0pt;&quot;&gt;&lt;br /&gt;
&lt;span style=&quot;background: white;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: red; font-family: Consolas; font-size: 12.0pt;&quot;&gt;font-size:&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: mediumblue; font-family: Consolas; font-size: 12.0pt;&quot;&gt;&amp;nbsp;xx-large;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Consolas; font-size: 12.0pt;&quot;&gt;&lt;br /&gt;
&lt;span style=&quot;background: white;&quot;&gt;}&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: brown; font-family: Consolas; font-size: 12.0pt;&quot;&gt;.blue&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: Consolas; font-size: 12.0pt;&quot;&gt;{&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Consolas; font-size: 12.0pt;&quot;&gt;&lt;br /&gt;
&lt;span style=&quot;background: white;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: red; font-family: Consolas; font-size: 12.0pt;&quot;&gt;color:&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: mediumblue; font-family: Consolas; font-size: 12.0pt;&quot;&gt;&amp;nbsp;blue;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Consolas; font-size: 12.0pt;&quot;&gt;&lt;br /&gt;
&lt;span style=&quot;background: white;&quot;&gt;}&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt; mso-outline-level: 2;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt;&quot;&gt;jQuery addClass() Method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: 16.9pt; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The following example shows how
to add class attributes to different elements. Of course you can select
multiple elements, when adding classes:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(&quot;button&quot;).click(function(){&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;h1, h2, p&quot;).addClass(&quot;blue&quot;);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;div&quot;).addClass(&quot;important&quot;);&lt;br /&gt;
});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;You
can also specify multiple classes within the addClass() method:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(&quot;button&quot;).click(function(){&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;#div1&quot;).addClass(&quot;important blue&quot;);&lt;br /&gt;
});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt; mso-outline-level: 2;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt;&quot;&gt;jQuery removeClass() Method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: 16.9pt; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The following example shows how
to remove a specific class attribute from different elements:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(&quot;button&quot;).click(function(){&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;h1, h2, p&quot;).removeClass(&quot;blue&quot;);&lt;br /&gt;
});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt; mso-outline-level: 2;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt;&quot;&gt;jQuery toggleClass() Method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: 16.9pt; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The following example will show
how to use the jQuery toggleClass() method. This method toggles between
adding/removing classes from the selected elements:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(&quot;button&quot;).click(function(){&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;h1, h2, p&quot;).toggleClass(&quot;blue&quot;);&lt;br /&gt;
});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt; mso-outline-level: 2;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt;&quot;&gt;jQuery css() Method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: 16.9pt; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The css() method sets or returns
one or more style properties for the selected elements.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt; mso-outline-level: 2;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt;&quot;&gt;Return a CSS Property&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: 16.9pt; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;To return the value of a
specified CSS property, use the following syntax:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: Consolas;&quot;&gt;css(&quot;&lt;i&gt;propertyname&lt;/i&gt;&quot;);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: Consolas;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The following example will return the background-color value
of the FIRST matched element:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(document).ready(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;button&quot;).click(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;alert(&quot;Background color = &quot; + (&quot;p&quot;).css(&quot;background-color&quot;));&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt; mso-outline-level: 2;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt;&quot;&gt;Set a CSS Property&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;To set a specified CSS property, use the following syntax:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Consolas; font-size: 12.0pt;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Consolas; font-size: 12.0pt;&quot;&gt;css(&quot;&lt;i&gt;propertyname&lt;/i&gt;&quot;,&quot;&lt;i&gt;value&lt;/i&gt;&quot;);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The following example will set the background-color value for
ALL matched elements:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(document).ready(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;button&quot;).click(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;p&quot;).css(&quot;background-color&quot;, &quot;yellow&quot;);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt; mso-outline-level: 2;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt; mso-outline-level: 2;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt;&quot;&gt;Set Multiple CSS Properties&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: 16.9pt; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;To set multiple CSS properties,
use the following syntax:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: Consolas;&quot;&gt;css({&quot;&lt;i&gt;propertyname&lt;/i&gt;&quot;:&quot;&lt;i&gt;value&lt;/i&gt;&quot;,&quot;&lt;i&gt;propertyname&lt;/i&gt;&quot;:&quot;&lt;i&gt;value&lt;/i&gt;&quot;,...});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The following example will set a background-color and a
font-size for ALL matched elements:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;$(&quot;p&quot;).css({&quot;background-color&quot;:
&quot;yellow&quot;, &quot;font-size&quot;: &quot;200%&quot;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-ansi-language: EN-US; mso-bidi-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-language: AR-SA; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: EN-US;&quot;&gt;&lt;br clear=&quot;all&quot; style=&quot;page-break-before: always;&quot; /&gt;
&lt;/span&gt;&lt;/b&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;jQuery Dimension Methods&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: 16.9pt; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;jQuery has several important
methods for working with dimensions:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: 16.9pt; mso-list: l25 level1 lfo34; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;width()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: 16.9pt; mso-list: l25 level1 lfo34; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;height()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: 16.9pt; mso-list: l25 level1 lfo34; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;innerWidth()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: 16.9pt; mso-list: l25 level1 lfo34; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;innerHeight()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: 16.9pt; mso-list: l25 level1 lfo34; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;outerWidth()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: 16.9pt; mso-list: l25 level1 lfo34; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;outerHeight()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;&lt;!--[if gte vml 1]&gt;&lt;v:shapetype
 id=&quot;_x0000_t75&quot; coordsize=&quot;21600,21600&quot; o:spt=&quot;75&quot; o:preferrelative=&quot;t&quot;
 path=&quot;m@4@5l@4@11@9@11@9@5xe&quot; filled=&quot;f&quot; stroked=&quot;f&quot;&gt;
 &lt;v:stroke joinstyle=&quot;miter&quot;/&gt;
 &lt;v:formulas&gt;
  &lt;v:f eqn=&quot;if lineDrawn pixelLineWidth 0&quot;/&gt;
  &lt;v:f eqn=&quot;sum @0 1 0&quot;/&gt;
  &lt;v:f eqn=&quot;sum 0 0 @1&quot;/&gt;
  &lt;v:f eqn=&quot;prod @2 1 2&quot;/&gt;
  &lt;v:f eqn=&quot;prod @3 21600 pixelWidth&quot;/&gt;
  &lt;v:f eqn=&quot;prod @3 21600 pixelHeight&quot;/&gt;
  &lt;v:f eqn=&quot;sum @0 0 1&quot;/&gt;
  &lt;v:f eqn=&quot;prod @6 1 2&quot;/&gt;
  &lt;v:f eqn=&quot;prod @7 21600 pixelWidth&quot;/&gt;
  &lt;v:f eqn=&quot;sum @8 21600 0&quot;/&gt;
  &lt;v:f eqn=&quot;prod @7 21600 pixelHeight&quot;/&gt;
  &lt;v:f eqn=&quot;sum @10 21600 0&quot;/&gt;
 &lt;/v:formulas&gt;
 &lt;v:path o:extrusionok=&quot;f&quot; gradientshapeok=&quot;t&quot; o:connecttype=&quot;rect&quot;/&gt;
 &lt;o:lock v:ext=&quot;edit&quot; aspectratio=&quot;t&quot;/&gt;
&lt;/v:shapetype&gt;&lt;v:shape id=&quot;_x0000_i1025&quot; type=&quot;#_x0000_t75&quot; alt=&quot;jQuery Dimensions&quot;
 style=&#39;width:366pt;height:255pt&#39;&gt;
 &lt;v:imagedata src=&quot;file:///C:/Users/VISHAL~1/AppData/Local/Temp/msohtmlclip1/01/clip_image001.gif&quot;
  o:href=&quot;http://www.w3schools.com/jquery/img_jquerydim.gif&quot;/&gt;
&lt;/v:shape&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;img alt=&quot;jQuery Dimensions&quot; border=&quot;0&quot; height=&quot;340&quot; src=&quot;file:///C:/Users/VISHAL~1/AppData/Local/Temp/msohtmlclip1/01/clip_image001.gif&quot; v:shapes=&quot;_x0000_i1025&quot; width=&quot;488&quot; /&gt;&lt;!--[endif]--&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt; mso-outline-level: 2;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt;&quot;&gt;jQuery width() and height() Methods&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l29 level1 lfo15; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
     width() method sets or returns the width of an element (excludes padding,
     border and margin).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l29 level1 lfo15; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
     height() method sets or returns the height of an element (excludes
     padding, border and margin).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l29 level1 lfo15; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
     following example returns the width and height of a specified &amp;lt;div&amp;gt;
     element:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script src=&quot; jquery-2.1.4.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(&quot;document&quot;).ready(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;button&quot;).click(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;var
txt = &quot;&quot;;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;txt +=
&quot;Width of div: &quot; + $(&quot;#div1&quot;).width() +
&quot;&amp;lt;/br&amp;gt;&quot;;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;txt +=
&quot;Height of div: &quot; + $(&quot;#div1&quot;).height();&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;#div1&quot;).html(txt);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;style&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;#div1 {&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;height:
100px;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;width:
300px;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;padding:
10px;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;margin:
3px;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;border:
1px solid blue;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;background-color: lightblue;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;}&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/style&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;div id=&quot;div1&quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;br&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;button&amp;gt;Display dimensions of
div&amp;lt;/button&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;p&amp;gt;width() - returns the width of an
element.&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;p&amp;gt;height() - returns the height of an
element.&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt; mso-outline-level: 2;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt;&quot;&gt;jQuery innerWidth() and innerHeight() Methods&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l16 level1 lfo35; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 11.5pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
innerWidth() method returns the width of an element (includes padding).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l16 level1 lfo35; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 11.5pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
innerHeight() method returns the height of an element (includes padding).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt; mso-outline-level: 2;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt;&quot;&gt;jQuery outerWidth() and outerHeight() Methods&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l18 level1 lfo36;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The outerWidth()
     method returns the width of an element (includes padding and border).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l18 level1 lfo36;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
     outerHeight() method returns the height of an element (includes padding
     and border).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt; mso-outline-level: 2;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The following example sets the width and height of a
specified &amp;lt;div&amp;gt; element:&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(&quot;button&quot;).click(function(){&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&quot;#div1&quot;).width(500).height(500);&lt;br /&gt;
});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h1 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 27.0pt; font-weight: normal; line-height: 115%;&quot;&gt;jQuery&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;colorh1&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;Traversing&lt;/span&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h1&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt; mso-outline-level: 2;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt;&quot;&gt;What is Traversing?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: 16.9pt; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;jQuery traversing, which means
&quot;move through&quot;, are used to &quot;find&quot; (or select) HTML
elements based on their relation to other elements. Start with one selection
and move through that selection until you reach the elements you desire.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: 16.9pt; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The image below illustrates a
family tree. With jQuery traversing, you can easily move up (ancestors), down
(descendants) and sideways (siblings) in the family tree, starting from the
selected (current) element. This movement is called traversing - or moving
through - the DOM.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;&lt;!--[if gte vml 1]&gt;&lt;v:shape id=&quot;_x0000_i1026&quot;
 type=&quot;#_x0000_t75&quot; alt=&quot;jQuery Dimensions&quot; style=&#39;width:262.2pt;height:123.6pt&#39;&gt;
 &lt;v:imagedata src=&quot;file:///C:/Users/VISHAL~1/AppData/Local/Temp/msohtmlclip1/01/clip_image002.png&quot;
  o:href=&quot;http://www.w3schools.com/jquery/img_travtree.png&quot;/&gt;
&lt;/v:shape&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;img alt=&quot;jQuery Dimensions&quot; border=&quot;0&quot; height=&quot;165&quot; src=&quot;file:///C:/Users/VISHAL~1/AppData/Local/Temp/msohtmlclip1/01/clip_image003.gif&quot; v:shapes=&quot;_x0000_i1026&quot; width=&quot;350&quot; /&gt;&lt;!--[endif]--&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: 16.9pt; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Illustration explained:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: 16.9pt; mso-list: l4 level1 lfo37; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The &amp;lt;div&amp;gt; element is the&lt;/span&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-size: 11.0pt;&quot;&gt;&amp;nbsp;parent&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-size: 11.0pt;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;of
     &amp;lt;ul&amp;gt;, and an&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-size: 11.0pt;&quot;&gt;&amp;nbsp;&lt;b&gt;ancestor&lt;/b&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;of
     everything inside of it&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: 16.9pt; mso-list: l4 level1 lfo37; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The &amp;lt;ul&amp;gt; element is the&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-size: 11.0pt;&quot;&gt;&amp;nbsp;&lt;b&gt;parent&lt;/b&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;of both
     &amp;lt;li&amp;gt; elements, and a&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-size: 11.0pt;&quot;&gt;&amp;nbsp;&lt;b&gt;child&lt;/b&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;of
     &amp;lt;div&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: 16.9pt; mso-list: l4 level1 lfo37; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The left &amp;lt;li&amp;gt; element is the&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-size: 11.0pt;&quot;&gt;&amp;nbsp;&lt;b&gt;parent&lt;/b&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;of &amp;lt;span&amp;gt;,&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-size: 11.0pt;&quot;&gt;&amp;nbsp;&lt;b&gt;child&lt;/b&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;of &amp;lt;ul&amp;gt;
     and a&lt;/span&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-size: 11.0pt;&quot;&gt;descendant&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-size: 11.0pt;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;of &amp;lt;div&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: 16.9pt; mso-list: l4 level1 lfo37; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The &amp;lt;span&amp;gt; element is a&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-size: 11.0pt;&quot;&gt;&amp;nbsp;&lt;b&gt;child&lt;/b&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;of the left
     &amp;lt;li&amp;gt; and a&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-size: 11.0pt;&quot;&gt;&amp;nbsp;&lt;b&gt;descendant&lt;/b&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;of
     &amp;lt;ul&amp;gt; and &amp;lt;div&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: 16.9pt; mso-list: l4 level1 lfo37; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The two &amp;lt;li&amp;gt; elements are&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-size: 11.0pt;&quot;&gt;&amp;nbsp;&lt;b&gt;siblings&lt;/b&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;(they share the
     same parent)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: 16.9pt; mso-list: l4 level1 lfo37; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The right &amp;lt;li&amp;gt; element is the&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-size: 11.0pt;&quot;&gt;&amp;nbsp;&lt;b&gt;parent&lt;/b&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;of &amp;lt;b&amp;gt;,&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-size: 11.0pt;&quot;&gt;&amp;nbsp;&lt;b&gt;child&lt;/b&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;of &amp;lt;ul&amp;gt;
     and a&lt;/span&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-size: 11.0pt;&quot;&gt;descendant&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-size: 11.0pt;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;of &amp;lt;div&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: 16.9pt; mso-list: l4 level1 lfo37; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The &amp;lt;b&amp;gt; element is a&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-size: 11.0pt;&quot;&gt;&amp;nbsp;&lt;b&gt;child&lt;/b&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;of
     the right &amp;lt;li&amp;gt; and a&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-bidi-font-size: 11.0pt;&quot;&gt;&amp;nbsp;&lt;b&gt;descendant&lt;/b&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;of
     &amp;lt;ul&amp;gt; and &amp;lt;div&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-ansi-language: EN-US; mso-bidi-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-language: AR-SA; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: EN-US;&quot;&gt;&lt;br clear=&quot;all&quot; style=&quot;page-break-before: always;&quot; /&gt;
&lt;/span&gt;&lt;/b&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;Traversing the DOM&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l26 level1 lfo38;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;jQuery provides
     a variety of methods that allows us to traverse the DOM.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l26 level1 lfo38;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The largest
     category of traversal methods are tree-traversal.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h1 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 27.0pt; font-weight: normal; line-height: 115%;&quot;&gt;jQuery
Traversing -&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;colorh1&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;Ancestors&lt;/span&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h1&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l26 level1 lfo38;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;An ancestor is a
     parent, grandparent, great-grandparent, and so on.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l26 level1 lfo38;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;With jQuery you
     can traverse up the DOM tree to find ancestors of an element.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt; mso-outline-level: 2;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt;&quot;&gt;Traversing Up the DOM Tree&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Three
useful jQuery methods for traversing up the DOM tree are:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l26 level1 lfo38;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;parent()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l26 level1 lfo38;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;parents()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l26 level1 lfo38;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;parentsUntil()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt; mso-outline-level: 2;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt;&quot;&gt;jQuery parent() Method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l26 level1 lfo38;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The parent()
     method returns the direct parent element of the selected element.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l26 level1 lfo38;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;This method only
     traverse a single level up the DOM tree.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l26 level1 lfo38;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The following
     example returns the direct parent element of each &amp;lt;span&amp;gt; elements:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;style&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;.ancestors * { &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;display:
block;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;border:
2px solid lightgrey;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;color:
lightgrey;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;padding:
5px;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;margin:
15px;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;}&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/style&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script src=&quot;jquery-2.1.4.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(document).ready(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;span&quot;).parent().css({&quot;color&quot;: &quot;red&quot;,
&quot;border&quot;: &quot;2px solid red&quot;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;div class=&quot;ancestors&quot;&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp; &lt;/span&gt;&amp;lt;div
style=&quot;width:500px;&quot;&amp;gt;div (great-grandparent)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&amp;lt;ul&amp;gt;ul (grandparent)&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&amp;lt;li&amp;gt;li (direct parent)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&amp;lt;span&amp;gt;span&amp;lt;/span&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&amp;lt;/li&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&amp;lt;/ul&amp;gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp; &lt;/span&gt;&amp;lt;/div&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp; &lt;/span&gt;&amp;lt;div
style=&quot;width:500px;&quot;&amp;gt;div (grandparent)&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&amp;lt;p&amp;gt;p
(direct parent)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&amp;lt;span&amp;gt;span&amp;lt;/span&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&amp;lt;/p&amp;gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp; &lt;/span&gt;&amp;lt;/div&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/div&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 31.5pt; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt; mso-outline-level: 2;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt;&quot;&gt;jQuery parents() Method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l3 level1 lfo40;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The parents()
     method returns all ancestor elements of the selected element, all the way
     up to the document&#39;s root element (&amp;lt;html&amp;gt;).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l3 level1 lfo40;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The following
     example returns all&amp;nbsp;ancestors of all &amp;lt;span&amp;gt; elements:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;style&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;.ancestors * { &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;display:
block;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;border:
2px solid lightgrey;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;color:
lightgrey;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;padding:
5px;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;margin:
15px;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;}&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/style&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script src=&quot;jquery-2.1.4.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(&quot;document&quot;).ready(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;span&quot;).parents().css({&quot;color&quot;: &quot;red&quot;,
&quot;border&quot;: &quot;2px solid red&quot;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;body class=&quot;ancestors&quot;&amp;gt;body
(great-great-grandparent)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp; &lt;/span&gt;&amp;lt;div
style=&quot;width:500px;&quot;&amp;gt;div (great-grandparent)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&amp;lt;ul&amp;gt;ul (grandparent)&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&amp;lt;li&amp;gt;li (direct parent)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&amp;lt;span&amp;gt;span&amp;lt;/span&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&amp;lt;/li&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&amp;lt;/ul&amp;gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp; &lt;/span&gt;&amp;lt;/div&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l3 level1 lfo40;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;You can also use
     an optional parameter to filter the search for ancestors.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l3 level1 lfo40;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The following
     example returns all ancestors of all &amp;lt;span&amp;gt; elements that are
     &amp;lt;ul&amp;gt; elements:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(document).ready(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;span&quot;).parents(&quot;ul&quot;).css({&quot;color&quot;:
&quot;red&quot;, &quot;border&quot;: &quot;2px solid red&quot;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt; mso-outline-level: 2;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt;&quot;&gt;jQuery parentsUntil() Method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l17 level1 lfo41;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
     parentsUntil() method returns all ancestor elements between two given
     arguments.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l17 level1 lfo41;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The following
     example returns all&amp;nbsp;ancestor elements between a &amp;lt;span&amp;gt; and a
     &amp;lt;div&amp;gt; element:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(document).ready(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;span&quot;).parentsUntil(&quot;div&quot;).css({&quot;color&quot;:
&quot;red&quot;, &quot;border&quot;: &quot;2px solid red&quot;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; line-height: 115%; mso-ansi-language: EN-US; mso-bidi-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-language: AR-SA; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: EN-US;&quot;&gt;&lt;br clear=&quot;all&quot; style=&quot;page-break-before: always;&quot; /&gt;
&lt;/span&gt;&lt;/b&gt;

&lt;h1 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 27.0pt; font-weight: normal; line-height: 115%;&quot;&gt;jQuery
Traversing -&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;colorh1&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;Descendants&lt;/span&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h1&gt;

&lt;p class=&quot;intro&quot; style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l12 level1 lfo42; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;A descendant is a child, grandchild, great-grandchild, and so on.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;intro&quot; style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l12 level1 lfo42; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;With jQuery you can traverse down the DOM tree to find descendants
of an element.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt; mso-outline-level: 2;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt;&quot;&gt;Traversing Down the DOM Tree&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;intro&quot; style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l12 level1 lfo42; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;Two useful jQuery methods for traversing down the DOM tree are:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: .75in; margin-right: 0in; margin-top: 0in; mso-list: l31 level1 lfo43; tab-stops: list .75in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 10.0pt; mso-bidi-font-family: Symbol; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;children()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: .75in; margin-right: 0in; margin-top: 0in; mso-list: l31 level1 lfo43; tab-stops: list .75in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 10.0pt; mso-bidi-font-family: Symbol; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;find()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;jQuery children() Method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l12 level1 lfo42; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 11.5pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
children() method returns all direct children of the selected element.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l12 level1 lfo42; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 11.5pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;This
method only traverse a single level down the DOM tree.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: .5in; margin-right: 0in; margin-top: 0in; mso-list: l12 level1 lfo42; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 11.5pt; mso-bidi-font-family: Symbol; mso-fareast-font-family: Symbol;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
following example returns all elements that are direct children of each
&amp;lt;div&amp;gt; elements:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;style&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;.descendants * { &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;display:
block;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;border:
2px solid lightgrey;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;color:
lightgrey;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;padding:
5px;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;margin:
15px;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;}&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/style&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script
src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(&quot;document&quot;).ready(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;div&quot;).children().css({&quot;color&quot;: &quot;red&quot;,
&quot;border&quot;: &quot;2px solid red&quot;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;div class=&quot;descendants&quot;
style=&quot;width:500px;&quot;&amp;gt;div (current element) &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp; &lt;/span&gt;&amp;lt;p&amp;gt;p
(child)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&amp;lt;span&amp;gt;span (grandchild)&amp;lt;/span&amp;gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp; &lt;/span&gt;&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp; &lt;/span&gt;&amp;lt;p&amp;gt;p
(child)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&amp;lt;span&amp;gt;span (grandchild)&amp;lt;/span&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp; &lt;/span&gt;&amp;lt;/p&amp;gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/div&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;jQuery find() Method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
find() method returns descendant elements of the selected element, all the way
down to the last descendant.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;style&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;.descendants * { &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;display:
block;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;border:
2px solid lightgrey;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;color:
lightgrey;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;padding:
5px;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;margin:
15px;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;}&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/style&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script src=&quot;jquery-2.1.4.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(&quot;document&quot;).ready(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;div&quot;).find(&quot;span&quot;).css({&quot;color&quot;:
&quot;red&quot;, &quot;border&quot;: &quot;2px solid red&quot;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;div class=&quot;descendants&quot;
style=&quot;width:500px;&quot;&amp;gt;div (current element) &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp; &lt;/span&gt;&amp;lt;p&amp;gt;p
(child)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&amp;lt;span&amp;gt;span (grandchild)&amp;lt;/span&amp;gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp; &lt;/span&gt;&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp; &lt;/span&gt;&amp;lt;p&amp;gt;p
(child)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&amp;lt;span&amp;gt;span (grandchild)&amp;lt;/span&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp; &lt;/span&gt;&amp;lt;/p&amp;gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/div&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; line-height: 115%; mso-ansi-language: EN-US; mso-bidi-font-family: &amp;quot;Times New Roman&amp;quot;; mso-bidi-language: AR-SA; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: EN-US;&quot;&gt;&lt;br clear=&quot;all&quot; style=&quot;page-break-before: always;&quot; /&gt;
&lt;/span&gt;&lt;/b&gt;

&lt;h1 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 27.0pt; font-weight: normal; line-height: 115%;&quot;&gt;jQuery
Traversing -&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;colorh1&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;Siblings&lt;/span&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h1&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l34 level1 lfo44; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;Siblings
     share the same parent.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l34 level1 lfo44; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;With jQuery
     you can traverse sideways in the DOM tree to find siblings of an element.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l34 level1 lfo44; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;There are
     many useful jQuery methods for traversing sideways in the DOM tree:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: 16.9pt; margin-left: 1.0in; mso-list: l37 level1 lfo45; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list 1.0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 10.0pt; mso-bidi-font-family: Symbol; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Symbol; mso-fareast-language: JA;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;siblings()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: 16.9pt; margin-left: 1.0in; mso-list: l37 level1 lfo45; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list 1.0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 10.0pt; mso-bidi-font-family: Symbol; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Symbol; mso-fareast-language: JA;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;next()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: 16.9pt; margin-left: 1.0in; mso-list: l37 level1 lfo45; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list 1.0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 10.0pt; mso-bidi-font-family: Symbol; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Symbol; mso-fareast-language: JA;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;nextAll()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: 16.9pt; margin-left: 1.0in; mso-list: l37 level1 lfo45; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list 1.0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 10.0pt; mso-bidi-font-family: Symbol; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Symbol; mso-fareast-language: JA;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;nextUntil()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: 16.9pt; margin-left: 1.0in; mso-list: l37 level1 lfo45; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list 1.0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 10.0pt; mso-bidi-font-family: Symbol; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Symbol; mso-fareast-language: JA;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;prev()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: 16.9pt; margin-left: 1.0in; mso-list: l37 level1 lfo45; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list 1.0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 10.0pt; mso-bidi-font-family: Symbol; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Symbol; mso-fareast-language: JA;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;prevAll()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: 16.9pt; margin-left: 1.0in; mso-list: l37 level1 lfo45; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list 1.0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Symbol; font-size: 10.0pt; mso-bidi-font-family: Symbol; mso-bidi-font-size: 11.5pt; mso-fareast-font-family: Symbol; mso-fareast-language: JA;&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;·&lt;span style=&quot;font: 7.0pt &amp;quot;Times New Roman&amp;quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;prevUntil()&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;jQuery siblings() Method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;ul style=&quot;margin-top: 0in;&quot; type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l34 level1 lfo44; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;The
     siblings() method returns all sibling elements of the selected element.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: black; line-height: normal; margin-bottom: 0in; mso-list: l34 level1 lfo44; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 12.0pt; mso-fareast-font-family: &amp;quot;MS Mincho&amp;quot;; mso-fareast-language: JA;&quot;&gt;The following
     example returns all sibling elements of &amp;lt;h2&amp;gt;:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;style&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;.siblings * { &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;display:
block;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;border:
2px solid lightgrey;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;color:
lightgrey;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;padding:
5px;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;margin:
15px;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;}&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/style&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script src=&quot; jquery-2.1.4.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(&quot;document&quot;).ready(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;h2&quot;).siblings().css({&quot;color&quot;: &quot;red&quot;,
&quot;border&quot;: &quot;2px solid red&quot;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;body class=&quot;siblings&quot;&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;div&amp;gt;div (parent)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;
&lt;/span&gt;&amp;lt;p&amp;gt;p&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;
&lt;/span&gt;&amp;lt;span&amp;gt;span&amp;lt;/span&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;
&lt;/span&gt;&amp;lt;h2&amp;gt;h2&amp;lt;/h2&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;
&lt;/span&gt;&amp;lt;h3&amp;gt;h3&amp;lt;/h3&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;
&lt;/span&gt;&amp;lt;p&amp;gt;p&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/div&amp;gt;&amp;lt;/body&amp;gt;&amp;lt;/html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;jQuery next() Method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
next() method returns the next sibling element of the selected element.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;jQuery nextAll() Method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
nextAll() method returns all next sibling elements of the selected element.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;jQuery nextUntil() Method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
nextUntil() method returns all next sibling elements between two given
arguments.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;jQuery prev(), prevAll()
&amp;amp; prevUntil() Methods&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
prev(), prevAll() and prevUntil() methods work just like the methods above but
with reverse functionality: they return previous sibling elements (traverse
backwards along sibling elements in the DOM tree, instead of forward).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 27.0pt; line-height: 115%; mso-ansi-language: EN-US; mso-bidi-language: AR-SA; mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;; mso-fareast-language: EN-US;&quot;&gt;&lt;br clear=&quot;all&quot; style=&quot;page-break-before: always;&quot; /&gt;
&lt;/span&gt;

&lt;h1 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 27.0pt; font-weight: normal; line-height: 115%;&quot;&gt;jQuery
Traversing -&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;colorh1&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif;&quot;&gt;Filtering&lt;/span&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h1&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;Narrow Down The Search
For Elements&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The three
most basic filtering methods are first(), last() and eq(), which allow you to
select a specific element based on its position in a group of elements.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;Other
filtering methods, like filter() and not() allow you to select elements that
match, or do not match, a certain criteria.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;jQuery first() Method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
first() method returns the first element of the selected elements.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
following example selects the first &amp;lt;p&amp;gt; element inside the first
&amp;lt;div&amp;gt; element:&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt; &lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; margin-bottom: 0in; margin-left: 1.0in; margin-right: 0in; margin-top: 0in; text-indent: .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;html&amp;gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script src=&quot; jquery-2.1.4.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(&quot;document&quot;).ready(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;div p&quot;).first().css(&quot;background-color&quot;,
&quot;yellow&quot;);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;h1&amp;gt;Welcome to My Homepage&amp;lt;/h1&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;p&amp;gt;This is the first paragraph in
body.&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;div style=&quot;border: 1px solid
black;&quot;&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;
&lt;/span&gt;&amp;lt;p&amp;gt;This is the first paragraph in a div.&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;
&lt;/span&gt;&amp;lt;p&amp;gt;This is the last paragraph in a div.&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/div&amp;gt;&amp;lt;br&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;div style=&quot;border: 1px solid
black;&quot;&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;
&lt;/span&gt;&amp;lt;p&amp;gt;This is the first paragraph in another div.&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;
&lt;/span&gt;&amp;lt;p&amp;gt;This is the last paragraph in another div.&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/div&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;p&amp;gt;This is the last paragraph in
body.&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;jQuery last() Method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
last() method returns the last element of the selected elements.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;jQuery eq() method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The eq()
method returns an element with a specific index number of the selected
elements.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The index numbers start at 0, so the first element will have
the index number 0 and not 1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script src=&quot;jquery-2.1.4.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(&quot;document&quot;).ready(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;p&quot;).eq(1).css(&quot;background-color&quot;,
&quot;yellow&quot;);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;h1&amp;gt;Welcome to My Homepage&amp;lt;/h1&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;p&amp;gt;My name is Donald (index 0).&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;p&amp;gt;Donald Duck (index 1).&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;p&amp;gt;I live in Duckburg (index 2).&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;p&amp;gt;My best friend is Mickey (index
3).&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;jQuery filter() Method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The
filter() method lets you specify a criteria. Elements that do not match the
criteria are removed from the selection, and those that match will be returned.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script src=&quot;jquery-2.1.4.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;$(&quot;document&quot;).ready(function(){&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;$(&quot;p&quot;).filter(&quot;.intro&quot;).css(&quot;background-color&quot;,
&quot;yellow&quot;);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;});&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/script&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/head&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;h1&amp;gt;Welcome to My Homepage&amp;lt;/h1&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;p&amp;gt;My name is Donald.&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;p class=&quot;intro&quot;&amp;gt;I live in
Duckburg.&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;p class=&quot;intro&quot;&amp;gt;I love
Duckburg.&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;p&amp;gt;My best friend is Mickey.&amp;lt;/p&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/body&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in; margin-left: 1.5in; margin-right: 0in; margin-top: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&amp;lt;/html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.5pt; margin-left: 0in; margin-right: 0in; margin-top: 7.5pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Segoe UI&amp;quot;,sans-serif; font-size: 22.5pt; font-weight: normal;&quot;&gt;jQuery not() Method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p style=&quot;background: white; line-height: 16.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: &amp;quot;Verdana&amp;quot;,sans-serif; font-size: 11.5pt;&quot;&gt;The not()
method returns all elements that do not match the criteria.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; line-height: normal; margin-bottom: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;background: white; color: blue; font-family: Consolas; font-size: 12.0pt; mso-bidi-font-weight: bold;&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;</description><link>https://vikramsomai.blogspot.com/2022/01/jquery-tutorial-complete-jquery.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6209014571885946851.post-6486831463846565234</guid><pubDate>Mon, 03 Jan 2022 08:30:00 +0000</pubDate><atom:updated>2022-01-03T17:48:34.097+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Python</category><title>Python program to display the current date and time</title><description>&lt;p&gt;&lt;span face=&quot;&amp;quot;Segoe UI&amp;quot;, Arial, sans-serif&quot; style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Python program to print the current date and time&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span face=&quot;&amp;quot;Segoe UI&amp;quot;, Arial, sans-serif&quot; style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Python Dates&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; font-family: Verdana, sans-serif; margin-bottom: 1.2em; margin-top: 1.2em;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;A date in Python is not a data type of its own, but we can import a module named&amp;nbsp;&lt;code class=&quot;w3-codespan&quot; style=&quot;background-color: rgba(222, 222, 222, 0.3); box-sizing: inherit; color: crimson; font-family: Consolas, Menlo, &amp;quot;courier new&amp;quot;, monospace; padding-left: 4px; padding-right: 4px;&quot;&gt;datetime&lt;/code&gt;&amp;nbsp;to work with dates as date objects.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; font-family: Verdana, sans-serif; margin-bottom: 1.2em; margin-top: 1.2em;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;example :-&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; font-family: Verdana, sans-serif; margin-bottom: 1.2em; margin-top: 1.2em;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span class=&quot;pythonkeywordcolor&quot; style=&quot;box-sizing: inherit; color: mediumblue; font-family: Consolas, Menlo, &amp;quot;courier new&amp;quot;, monospace;&quot;&gt;import&lt;/span&gt;&lt;span style=&quot;font-family: Consolas, Menlo, &amp;quot;courier new&amp;quot;, monospace;&quot;&gt;&amp;nbsp;datetime&lt;/span&gt;&lt;br style=&quot;box-sizing: inherit; font-family: Consolas, Menlo, &amp;quot;courier new&amp;quot;, monospace;&quot; /&gt;&lt;br style=&quot;box-sizing: inherit; font-family: Consolas, Menlo, &amp;quot;courier new&amp;quot;, monospace;&quot; /&gt;&lt;span style=&quot;font-family: Consolas, Menlo, &amp;quot;courier new&amp;quot;, monospace;&quot;&gt;x = datetime.datetime.now()&lt;/span&gt;&lt;br style=&quot;box-sizing: inherit; font-family: Consolas, Menlo, &amp;quot;courier new&amp;quot;, monospace;&quot; /&gt;&lt;span class=&quot;pythonkeywordcolor&quot; style=&quot;box-sizing: inherit; color: mediumblue; font-family: Consolas, Menlo, &amp;quot;courier new&amp;quot;, monospace;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;font-family: Consolas, Menlo, &amp;quot;courier new&amp;quot;, monospace;&quot;&gt;(x)&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;h2 style=&quot;background-color: white; box-sizing: inherit; font-family: &amp;quot;Segoe UI&amp;quot;, Arial, sans-serif; font-weight: 400; margin: 10px 0px;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;The strftime() Method&lt;/span&gt;&lt;/h2&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; font-family: Verdana, sans-serif; margin-bottom: 1.2em; margin-top: 1.2em;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;The&amp;nbsp;&lt;code class=&quot;w3-codespan&quot; style=&quot;background-color: rgba(222, 222, 222, 0.3); box-sizing: inherit; color: crimson; font-family: Consolas, Menlo, &amp;quot;courier new&amp;quot;, monospace; padding-left: 4px; padding-right: 4px;&quot;&gt;datetime&lt;/code&gt;&amp;nbsp;object has a method for formatting date objects into readable strings.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; font-family: Verdana, sans-serif; margin-bottom: 1.2em; margin-top: 1.2em;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;The method is called&amp;nbsp;&lt;code class=&quot;w3-codespan&quot; style=&quot;background-color: rgba(222, 222, 222, 0.3); box-sizing: inherit; color: crimson; font-family: Consolas, Menlo, &amp;quot;courier new&amp;quot;, monospace; padding-left: 4px; padding-right: 4px;&quot;&gt;strftime()&lt;/code&gt;, and takes one parameter,&amp;nbsp;&lt;code class=&quot;w3-codespan&quot; style=&quot;background-color: rgba(222, 222, 222, 0.3); box-sizing: inherit; color: crimson; font-family: Consolas, Menlo, &amp;quot;courier new&amp;quot;, monospace; padding-left: 4px; padding-right: 4px;&quot;&gt;format&lt;/code&gt;, to specify the format of the returned string:&lt;/span&gt;&lt;/p&gt;&lt;h2 style=&quot;background-color: white; box-sizing: inherit; margin-bottom: 1.2em; margin-top: 1.2em; text-align: left;&quot;&gt;&lt;span face=&quot;Verdana, sans-serif&quot; style=&quot;font-size: large;&quot;&gt;Python program to display the current date and time&lt;/span&gt;&lt;/h2&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; font-family: Verdana, sans-serif; margin-bottom: 1.2em; margin-top: 1.2em;&quot;&gt;&lt;/p&gt;&lt;pre style=&quot;background: rgb(255, 255, 255); color: black;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;import&lt;/span&gt; datetime
now &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; datetime&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;datetime&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;now&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;Current date and time : &quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;now&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;strftime&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;%Y-%m-%d %H:%M:%S&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/pre&gt;&lt;p&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; font-family: Verdana, sans-serif; margin-bottom: 1.2em; margin-top: 1.2em;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;output:-&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; margin-bottom: 1.2em; margin-top: 1.2em;&quot;&gt;&lt;span face=&quot;Verdana, sans-serif&quot; style=&quot;font-size: large;&quot;&gt;Current date and time :&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; margin-bottom: 1.2em; margin-top: 1.2em;&quot;&gt;&lt;span face=&quot;Verdana, sans-serif&quot; style=&quot;font-size: large;&quot;&gt;2022-01-03 13:46:50&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; margin-bottom: 1.2em; margin-top: 1.2em;&quot;&gt;&lt;span face=&quot;Verdana, sans-serif&quot; style=&quot;font-size: large;&quot;&gt;&amp;gt;&amp;gt;&amp;gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;h2 style=&quot;background-color: white; box-sizing: inherit; margin-bottom: 1.2em; margin-top: 1.2em; text-align: left;&quot;&gt;&lt;span face=&quot;Verdana, sans-serif&quot; style=&quot;font-size: large;&quot;&gt;Get the current date and time&lt;/span&gt;&lt;/h2&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; margin-bottom: 1.2em; margin-top: 1.2em;&quot;&gt;&lt;/p&gt;&lt;pre style=&quot;background: rgb(255, 255, 255); color: black;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;from&lt;/span&gt; datetime &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;import&lt;/span&gt; datetime

now &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; datetime&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;now&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
 
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;now =&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; now&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;

dt_string &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; now&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;strftime&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;%d/%m/%Y %H:%M:%S&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;date and time =&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; dt_string&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;	
&lt;/span&gt;&lt;/pre&gt;&lt;span style=&quot;font-size: large;&quot;&gt;output:-&lt;/span&gt;&lt;p&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; margin-bottom: 1.2em; margin-top: 1.2em;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;now = 2022-01-03 13:50:59.575978&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; margin-bottom: 1.2em; margin-top: 1.2em;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;date and time = 03/01/2022 13:50:59&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; margin-bottom: 1.2em; margin-top: 1.2em;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&amp;gt;&amp;gt;&amp;gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;h2 style=&quot;background-color: white; box-sizing: inherit; margin-bottom: 1.2em; margin-top: 1.2em; text-align: left;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Python get current date without time&lt;/span&gt;&lt;/h2&gt;&lt;div&gt;&lt;pre style=&quot;background: rgb(255, 255, 255); color: black;&quot;&gt;&lt;pre style=&quot;background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; background-position: initial; background-repeat: initial; background-size: initial;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;import&lt;/span&gt; datetime
now &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; datetime&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;date&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;today&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
currentDate &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; datetime&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;datetime&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;strptime&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&#39;01/08/2015&#39;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&#39;%d/%m/%Y&#39;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;date&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;currentDate&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/pre&gt;&lt;span style=&quot;font-size: large;&quot;&gt;
&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;output:-&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;2022-01-03&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&amp;gt;&amp;gt;&amp;gt;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;h2 style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Python get current time in seconds&lt;/span&gt;&lt;/h2&gt;&lt;div&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;import&lt;/span&gt; time
milliseconds &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #400000;&quot;&gt;int&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #400000;&quot;&gt;round&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;time&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;time&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt; &lt;span style=&quot;color: #44aadd;&quot;&gt;*&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;1000&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;milliseconds&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;output:-&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;1641198498286
&amp;gt;&amp;gt;&amp;gt; &lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;</description><link>https://vikramsomai.blogspot.com/2022/01/python-print-current-date-and-time.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6209014571885946851.post-2886986193724534841</guid><pubDate>Mon, 03 Jan 2022 07:38:00 +0000</pubDate><atom:updated>2022-01-03T13:40:58.128+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">software engineering</category><title> Software Process Models and Types</title><description>&lt;h1 style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: Poppins; font-size: x-large;&quot;&gt;Software Process Models&lt;/span&gt;&lt;/h1&gt;&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;A software process model is a standardized format for planning, organizing and running a development project.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;It is a description of the sequence of activity carried out in a SE project.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;A software process model is a simplified representation of a software process.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Each process model follows a particular life cycle in order to ensure success in process of software development&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Some methodologies are sometimes known as software development life cycle(SDLC)methodologies&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Requirement gathering and analysis&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Design&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Implementation or coding&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Testing&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&amp;nbsp;Deployment&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&amp;nbsp;Maintenance&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Types of process model is Waterfall model, Prototype model, spiral model incremental model, iterative model, RAD model etc.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&lt;h2 style=&quot;background-color: white; box-sizing: inherit; color: #333333; font-weight: 400; letter-spacing: -0.05rem; line-height: 1.4; margin: 0px; padding: 0px; scroll-padding-top: 80px; text-rendering: optimizelegibility;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Types of Software Process Model&lt;/span&gt;&lt;/h2&gt;&lt;div&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;ul style=&quot;background-color: white; box-sizing: inherit; letter-spacing: 0.16px; line-height: 1.9; list-style-position: outside; margin: 0px 0px 25px 1.25rem; padding: 0px; scroll-padding-top: 80px;&quot;&gt;&lt;li style=&quot;box-sizing: inherit; line-height: 1.85714em; margin-bottom: 10px !important; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding: 0px; scroll-padding-top: 80px;&quot;&gt;&lt;b&gt;Waterfall model&lt;/b&gt;&lt;/li&gt;&lt;li style=&quot;box-sizing: inherit; line-height: 1.85714em; margin-bottom: 10px !important; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding: 0px; scroll-padding-top: 80px;&quot;&gt;&lt;b&gt;Incremental model&lt;/b&gt;&lt;/li&gt;&lt;li style=&quot;box-sizing: inherit; line-height: 1.85714em; margin-bottom: 10px !important; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding: 0px; scroll-padding-top: 80px;&quot;&gt;&lt;b&gt;Spiral model&lt;/b&gt;&lt;/li&gt;&lt;li style=&quot;box-sizing: inherit; line-height: 1.85714em; margin-bottom: 10px !important; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding: 0px; scroll-padding-top: 80px;&quot;&gt;&lt;b&gt;Prototype model&lt;/b&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;/span&gt;&lt;h2 style=&quot;text-align: left;&quot;&gt;&lt;u&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span&gt;WATERFALL MODEL / LINEAR-SEQUENTIAL MODEL&lt;/span&gt;&lt;/span&gt;&lt;/u&gt;&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;The Waterfall Model was first Process Model to be introduced. It is also referred to as a linear-sequential life cycle model because it illustrates the software development process in a linear sequential flow.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;In a waterfall model, each phase must be completed before the next phase can begin and there is no overlapping in the phases.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Waterfall model is the earliest SDLC approach that was used for software development. It is very simple to understand and use.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;In &quot;The Waterfall&quot; approach, the whole process of software development is divided into separate phases. In Waterfall model, the outcome of one phase acts as the input for the next phase sequentially.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Following is a diagrammatic representation of different phases of waterfall model.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg_naCk78x42UlmbdUv0_3e020c3_Yrdz2GB5bf7Jag8WbuxDyiGIQvpVor0PVCwn0PfgRmjuVQCg6HYCzp2GJxOmAxzQmqlTWpppZarUOsE5oORiJik9R34-Hjfx7y4ze89hiBxu2jSyY8/s790/water.jpg&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;432&quot; data-original-width=&quot;790&quot; height=&quot;263&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg_naCk78x42UlmbdUv0_3e020c3_Yrdz2GB5bf7Jag8WbuxDyiGIQvpVor0PVCwn0PfgRmjuVQCg6HYCzp2GJxOmAxzQmqlTWpppZarUOsE5oORiJik9R34-Hjfx7y4ze89hiBxu2jSyY8/w541-h263/water.jpg&quot; width=&quot;541&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;The sequential phases in Waterfall model are:&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&lt;b&gt;Requirement Gathering and analysis&lt;/b&gt;: All possible requirements of the system to be developed are captured in this phase and documented in requirement specification documentation.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&lt;b&gt;System Design&lt;/b&gt;: The first phases are studied in this phase and system design is prepared.&amp;nbsp; System Design helps in specifying hardware and system requirements and also helps in defining overall system architecture.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&lt;span&gt;&lt;b&gt;Implementation:&lt;/b&gt;&amp;nbsp;With inputs from system design, the system is first developed in small&lt;br /&gt;&lt;/span&gt;&lt;span&gt;programs called units, which are integrated in the next phase.&lt;br /&gt;&lt;/span&gt;&lt;span&gt;o Each unit is developed and tested for its functionality, which is referred to as Unit&lt;br /&gt;&lt;/span&gt;&lt;span&gt;Testing.&lt;br /&gt;&lt;/span&gt;&lt;span&gt;&lt;b&gt;Integration and Testing:&lt;/b&gt;&amp;nbsp;All the units developed in the implementation phase are&lt;br /&gt;&lt;/span&gt;&lt;span&gt;integrated into a system after testing of each unit.&lt;br /&gt;&lt;/span&gt;&lt;span&gt;o Post (After) integration the entire system is tested for any faults and failures.&lt;/span&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span&gt;&lt;b&gt;Deployment of system&lt;/b&gt;: Once the functional and non-functional testing is done, the&lt;br /&gt;&lt;/span&gt;&lt;span&gt;product is deployed in the customer environment or released into the market.&lt;br /&gt;&lt;/span&gt;&lt;span&gt;&amp;nbsp;Maintenance: There are some issues, which come up in the client environment.&lt;br /&gt;&lt;/span&gt;&lt;span&gt;o To fix those issues maintenance is done. Also to enhance the product some better&lt;br /&gt;&lt;/span&gt;&lt;span&gt;versions are released. Maintenance is done to deliver these changes in the customer&lt;br /&gt;&lt;/span&gt;&lt;span&gt;environment.&lt;/span&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;b&gt;When to use waterfall model&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;span&gt;• Requirements are very well documented, clear and fixed.&lt;br /&gt;&lt;/span&gt;&lt;span&gt;• Product definition is stable (no change).&lt;br /&gt;&lt;/span&gt;&lt;span&gt;• Technology is understood and is not dynamic.&lt;br /&gt;&lt;/span&gt;&lt;span&gt;• There are no ambiguous requirements (no double meaning and confusion).&lt;br /&gt;&lt;/span&gt;&lt;span&gt;• Ample resources with required expertise are available to support the product.&lt;br /&gt;&lt;/span&gt;&lt;span&gt;• The project is short.&lt;/span&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span&gt;&lt;b&gt;Advantages&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;span&gt;• Simple and easy to understand and use.&lt;br /&gt;&lt;/span&gt;&lt;span&gt;• Easy to manage due to the rigidity (strictness) of the model. Each phase has specific&lt;br /&gt;&lt;/span&gt;&lt;span&gt;deliverables (output) and a review process.&lt;br /&gt;&lt;/span&gt;&lt;span&gt;• Phases are processed and completed one at a time.&lt;br /&gt;&lt;/span&gt;&lt;span&gt;• Works well for smaller projects where requirements are very well understood.&lt;br /&gt;&lt;/span&gt;&lt;span&gt;• Clearly defined stages.&lt;br /&gt;&lt;/span&gt;&lt;span&gt;• Well-understood milestones (objective or target).&lt;br /&gt;&lt;/span&gt;&lt;span&gt;• Easy to arrange tasks.&lt;br /&gt;&lt;/span&gt;&lt;span&gt;• Process and results are well document&lt;/span&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;b&gt;&lt;span&gt;Disadvantages&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;span&gt;• No working software is produced until late during the life cycle.&lt;br /&gt;&lt;/span&gt;&lt;span&gt;• High amounts of risk and uncertainty.&lt;br /&gt;&lt;/span&gt;&lt;span&gt;• Not a good model for complex and ongoing projects.&lt;br /&gt;&lt;/span&gt;&lt;span&gt;• It is difficult to measure progress within stages.&lt;br /&gt;&lt;/span&gt;&lt;span&gt;• Cannot accommodate changing requirements.&lt;br /&gt;&lt;/span&gt;&lt;span&gt;• Adjusting scope during the life cycle can end a project.&lt;/span&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;h2 style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Prototype Model:-&lt;/span&gt;&lt;/h2&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&lt;span&gt;working prototype of the system should be built.&lt;/span&gt;&lt;br /&gt;&lt;span&gt;&amp;nbsp;By using this prototype, the client can get an “actual feel” of the system, since the&lt;/span&gt;&lt;br /&gt;&lt;span&gt;interactions with prototype can enable the client to better understand the requirements of&lt;/span&gt;&lt;br /&gt;&lt;span&gt;the desired system.&lt;/span&gt;&lt;br /&gt;&lt;span&gt;&amp;nbsp;Prototype is a working model of software with some limited functionality.&lt;/span&gt;&lt;br /&gt;&lt;span&gt;&amp;nbsp;A prototype is a version of a system or part of the system that’s developed quickly to check&lt;/span&gt;&lt;br /&gt;&lt;span&gt;the customer’s requirements or feasibility of some design decisions.&lt;/span&gt;&lt;br /&gt;&lt;span&gt;&amp;nbsp;So, a prototype is useful when a customer or developer is not sure of the requirements,&lt;/span&gt;&lt;br /&gt;&lt;span&gt;efficiency, business rules, response time, etc.&lt;/span&gt;&lt;br /&gt;&lt;span&gt;Diagram of Prototype model:&lt;/span&gt;&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjgLWX7hH8CzvYNfIUmDiTD0sClndQkBPSLoWgPuIacoH6zy8G0A8lxXUPFn7LJefz-VNvkBG78UiVz-XwZH9-M1IQOYs8XQlxQX3q-i-_7_CiRq0hl62zj01kFQ7are3A6Gdhy_q8nAC42/s900/protype+model.jpg&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;span&gt;&lt;img alt=&quot;prototype model&quot; border=&quot;0&quot; data-original-height=&quot;297&quot; data-original-width=&quot;900&quot; height=&quot;186&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjgLWX7hH8CzvYNfIUmDiTD0sClndQkBPSLoWgPuIacoH6zy8G0A8lxXUPFn7LJefz-VNvkBG78UiVz-XwZH9-M1IQOYs8XQlxQX3q-i-_7_CiRq0hl62zj01kFQ7are3A6Gdhy_q8nAC42/w563-h186/protype+model.jpg&quot; title=&quot;prototype model&quot; width=&quot;563&quot; /&gt;&lt;/span&gt;&lt;/a&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;p&gt;&lt;/p&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&lt;div&gt;&lt;p&gt;&lt;span&gt;A Prototype model suggests that before carrying the development of the actual software, a&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span&gt;&amp;nbsp;A prototype is a toy implementation of the system.&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;span&gt;Prototyping is an attractive idea for complicated and large systems for which there is no&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span&gt;manual process or existing system to help determining the requirements.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span&gt;&amp;nbsp;In prototyping, the client is involved throughout the development process, which increases&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span&gt;the likelihood of client acceptance of the final implementation.&lt;/span&gt;&lt;/p&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;h3 style=&quot;text-align: left;&quot;&gt;&lt;span&gt;&lt;b&gt;A software prototype can be used:&lt;/b&gt;&lt;/span&gt;&lt;/h3&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;span&gt;Prototype model should be used when the desired system needs to have a lot of&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;interaction with the end users.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;• Typically, online systems, web interfaces have a very high amount of interaction with&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;end users, are best suited for Prototype model.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;• Prototyping ensures that the end users constantly work with the system and provide a&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;feedback which is incorporated in the prototype to result in a useable system.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;• They are excellent for designing good human computer interface systems.&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;h2&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Advantages of Prototype model:&lt;/span&gt;&lt;/h2&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;span&gt;• Customer can get quickly result.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;• Users are actively involved in the development&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;• Testing is almost completed before build/development is completed.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;• Errors can be detected much earlier.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;• Quicker user feedback is available leading to better solutions.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;• Missing functionality can be identified easily&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;h1&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/h1&gt;&lt;h3 style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Disadvantages of Prototype model:&lt;/span&gt;&lt;/h3&gt;&lt;div&gt;&lt;div&gt;&lt;span&gt;• Time consuming and costly&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;• Insufficient requirement.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;• Extra prototype is required.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;• Leads to implementing and then repairing way of building systems.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;• Practically, this methodology may increase the complexity of the system as scope of the&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;system may expand beyond original plans.&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;h2 style=&quot;text-align: left;&quot;&gt;&amp;nbsp; Spiral Model:-&lt;/h2&gt;&lt;p&gt;The spiral model is also known as spiral lifecycle model.&lt;/p&gt;&lt;p&gt;&amp;nbsp;This model of development combines the feature of the prototype and waterfall model&lt;/p&gt;&lt;p&gt;&amp;nbsp;A spiral model is divided into a number of framework activities, also called task Regions.&lt;/p&gt;&lt;p&gt;&amp;nbsp;Typically, there are six task regions. Software project repeatedly passes though these phases&lt;/p&gt;&lt;p&gt;in iterations called spiral.&lt;/p&gt;&lt;p&gt;&lt;b&gt;&amp;nbsp;Diagram of spiral model that contains six task regions:&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjd67z3-3yIKFTFT1eyyI4Lq1PEPR56icYVXddk8dBPEtv1g1TDR_I4gGLsR2ykMPEkK_evXMeBuNRsIXpRRPvw3VpCP1-f1Bh6LrMc7Q61U2NLl9Z_fds4TZNDgkQEgTy5feNneJzdgGSn/s933/spiral+model.jpg&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;506&quot; data-original-width=&quot;933&quot; height=&quot;256&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjd67z3-3yIKFTFT1eyyI4Lq1PEPR56icYVXddk8dBPEtv1g1TDR_I4gGLsR2ykMPEkK_evXMeBuNRsIXpRRPvw3VpCP1-f1Bh6LrMc7Q61U2NLl9Z_fds4TZNDgkQEgTy5feNneJzdgGSn/w471-h256/spiral+model.jpg&quot; width=&quot;471&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;1) Customer communication:&lt;/b&gt;&lt;/p&gt;&lt;p&gt;• In this tasks required to establish effective communication between developer and&lt;/p&gt;&lt;p&gt;customer.&lt;/p&gt;&lt;p&gt;2) Planning:&lt;/p&gt;&lt;p&gt;• In this tasks required defining resources, timelines, and other project related&lt;/p&gt;&lt;p&gt;information.&lt;/p&gt;&lt;p&gt;• Requirements are studied and gathered&lt;/p&gt;&lt;p&gt;• Review and walkthroughs to streamline the requirements.&lt;/p&gt;&lt;p&gt;• Finalize the list of documents.&lt;/p&gt;&lt;p&gt;• The project is review and a decision made whether to continue with a further loop of&lt;/p&gt;&lt;p&gt;the spiral.&lt;/p&gt;&lt;p&gt;• If it is decided to continue, plans are drawn up for the next phase of the project.&lt;/p&gt;&lt;p&gt;&lt;b&gt;3) Risk analysis&lt;/b&gt;&lt;/p&gt;&lt;p&gt;• In this tasks required to assess both technical and management risks.&lt;/p&gt;&lt;p&gt;• In the risk analysis phase a process is undertaken to identify risk and alternate&lt;/p&gt;&lt;p&gt;solutions.&lt;/p&gt;&lt;p&gt;• A prototype is produced at the end of the risk analysis phase.&lt;/p&gt;&lt;p&gt;• If any risk is found during the risk analysis then alternate solutions are suggested&lt;/p&gt;&lt;p&gt;and implemented.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;4) Engineering&lt;/b&gt;&lt;/p&gt;&lt;p&gt;• In this phase software is developed, along with testing at the end of the phase.&lt;/p&gt;&lt;p&gt;• Actual development and testing is done if the software takes place in this phase.&lt;/p&gt;&lt;p&gt;• It include coding, test case and test results, test summary report&lt;/p&gt;&lt;p&gt;&lt;b&gt;5) Construction and release&lt;/b&gt;&lt;/p&gt;&lt;p&gt;• It is requires to construct, test, install, and provide user support (e.g., documentation&lt;/p&gt;&lt;p&gt;and training).&lt;/p&gt;&lt;p&gt;&lt;b&gt;6)Customer evaluation&lt;/b&gt;&lt;/p&gt;&lt;p&gt;• Customers evaluate the software and provide their feedback and approval.&lt;/p&gt;&lt;p&gt;• Features implemented document&lt;/p&gt;&lt;p&gt;&lt;b&gt;&amp;nbsp;When to use Spiral model:&lt;/b&gt;&lt;/p&gt;&lt;p&gt;• When the project is large.&lt;/p&gt;&lt;p&gt;• Where software needs continuous risk evaluation.&lt;/p&gt;&lt;p&gt;• When costs and risk evaluation is important.&lt;/p&gt;&lt;p&gt;• For medium to high-risk projects&lt;/p&gt;&lt;p&gt;• Users are unsure of their needs&lt;/p&gt;&lt;p&gt;• Requirements are complex and require continuous classification.&lt;/p&gt;&lt;p&gt;• New product line.&lt;/p&gt;&lt;h3 style=&quot;text-align: left;&quot;&gt;&lt;span&gt;&amp;nbsp;Advantages of Spiral model:&lt;/span&gt;&lt;/h3&gt;&lt;p&gt;• Risk evaluation is proper.&lt;/p&gt;&lt;p&gt;• High amount of risk analysis hence, avoidance of Risk is enhanced.&lt;/p&gt;&lt;p&gt;• Good for large and critical projects.&lt;/p&gt;&lt;p&gt;• Strong approval and documentation control.&lt;/p&gt;&lt;p&gt;• More and more features are added in a systematic way.&lt;/p&gt;&lt;p&gt;• Software is produced early in the software life cycle.&lt;/p&gt;&lt;h3 style=&quot;text-align: left;&quot;&gt;&lt;span&gt;&amp;nbsp;Disadvantages of Spiral model:&lt;/span&gt;&lt;/h3&gt;&lt;p&gt;• It is costly for small model.&lt;/p&gt;&lt;p&gt;• Risk analysis is important phase so requires expert people.&lt;/p&gt;&lt;p&gt;• Project’s success is highly dependent on the risk analysis phase.&lt;/p&gt;&lt;p&gt;• Spiral may go infinitely.&lt;/p&gt;&lt;p&gt;• It is suitable for larger project and not beneficial for smaller projects.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;h2 style=&quot;text-align: left;&quot;&gt;&amp;nbsp;Incremental model :-&lt;/h2&gt;&lt;p&gt;In incremental model the whole requirement is divided into various builds.&lt;/p&gt;&lt;p&gt;&amp;nbsp;Each module passes through the&amp;nbsp;&lt;b&gt;requirements, design, implementation and testing phases&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&amp;nbsp;Diagram of Incremental model:&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgAQYG8eRznWYDE0Z45SMWDxrnPxE-N9IH_0DpGEVw-OWI83DY9LANILQORcKLd3ESLB9m98LDCaObeWAodAytOl-zcXe1i6hU8StV5NWVDNtN7UEN-73gB9rLFE47S_JjBE9pEADU2oXfD/s825/incremental+model.jpg&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Incremental model&quot; border=&quot;0&quot; data-original-height=&quot;428&quot; data-original-width=&quot;825&quot; height=&quot;264&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgAQYG8eRznWYDE0Z45SMWDxrnPxE-N9IH_0DpGEVw-OWI83DY9LANILQORcKLd3ESLB9m98LDCaObeWAodAytOl-zcXe1i6hU8StV5NWVDNtN7UEN-73gB9rLFE47S_JjBE9pEADU2oXfD/w509-h264/incremental+model.jpg&quot; title=&quot;Incremental model&quot; width=&quot;509&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;Incremental model is a method of software development where the product is designed,&lt;/p&gt;&lt;p&gt;implemented and tested incrementally until the product is finished.&lt;/p&gt;&lt;p&gt;&amp;nbsp;Each subsequent release of the module adds function to the previous release. The process&lt;/p&gt;&lt;p&gt;continues till the complete system is achieved.&lt;/p&gt;&lt;p&gt;&amp;nbsp;When we work incrementally we are adding piece by piece but expect that each piece is&lt;/p&gt;&lt;p&gt;fully finished. Thus keep on adding the pieces until it’s complete.&lt;/p&gt;&lt;h3 style=&quot;text-align: left;&quot;&gt;&amp;nbsp;When to use the Incremental model:&lt;/h3&gt;&lt;p&gt;• This model can be used when the requirements of the complete system are clearly&lt;/p&gt;&lt;p&gt;defined and understood.&lt;/p&gt;&lt;p&gt;• Major requirements must be defined; however, some details can evolve with time.&lt;/p&gt;&lt;p&gt;• There is a need to get a product to the market early.&lt;/p&gt;&lt;p&gt;• A new technology is being used&lt;/p&gt;&lt;h3 style=&quot;text-align: left;&quot;&gt;&amp;nbsp;Advantages of Incremental model:&lt;/h3&gt;&lt;p&gt;• Generates working software quickly and early during the software life cycle.&lt;/p&gt;&lt;p&gt;• This model is more flexible – less costly to change scope and requirements.&lt;/p&gt;&lt;p&gt;• It is easier to test and debug during a smaller iteration.&lt;/p&gt;&lt;p&gt;• In this model customer can respond to each built.&lt;/p&gt;&lt;p&gt;• Lowers initial delivery cost.&lt;/p&gt;&lt;p&gt;• Easier to manage risk because risky pieces are identified and handled during it’s&lt;/p&gt;&lt;p&gt;iteration.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;h3 style=&quot;text-align: left;&quot;&gt;Disadvantages of Incremental model:&lt;/h3&gt;&lt;p&gt;• Needs good planning and design.&lt;/p&gt;&lt;p&gt;• Needs a clear and complete definition of the whole system before it can be broken&lt;/p&gt;&lt;p&gt;down and built incrementally.&lt;/p&gt;&lt;p&gt;• Total cost is higher than waterfall.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;• There are some high-risk features and goals.&lt;/p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/span&gt;&lt;span style=&quot;font-size: medium;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;</description><link>https://vikramsomai.blogspot.com/2022/01/process-models-software-process-model.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg_naCk78x42UlmbdUv0_3e020c3_Yrdz2GB5bf7Jag8WbuxDyiGIQvpVor0PVCwn0PfgRmjuVQCg6HYCzp2GJxOmAxzQmqlTWpppZarUOsE5oORiJik9R34-Hjfx7y4ze89hiBxu2jSyY8/s72-w541-h263-c/water.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6209014571885946851.post-8804582723081278392</guid><pubDate>Mon, 03 Jan 2022 06:27:00 +0000</pubDate><atom:updated>2022-01-03T11:57:49.461+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">PHP</category><title>PHP browser detection script</title><description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Write a simple PHP browser detection script&lt;/span&gt;&lt;/p&gt;&lt;h4&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Example 1:-&lt;/span&gt;&lt;/h4&gt;&lt;div&gt;&lt;span style=&quot;color: #351c75; font-family: Poppins; font-size: large;&quot;&gt;&lt;span class=&quot;token delimiter important&quot; style=&quot;background-color: #fdfdfd; white-space: pre;&quot;&gt;&amp;lt;?php&lt;/span&gt;&lt;span style=&quot;background-color: #fdfdfd; white-space: pre;&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;token keyword&quot; style=&quot;background-color: #fdfdfd; white-space: pre;&quot;&gt;echo&lt;/span&gt;&lt;span style=&quot;background-color: #fdfdfd; white-space: pre;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;token string double-quoted-string&quot; style=&quot;background-color: #fdfdfd; white-space: pre;&quot;&gt;&quot;Your User Agent is :&quot;&lt;/span&gt;&lt;span style=&quot;background-color: #fdfdfd; white-space: pre;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;token operator&quot; style=&quot;background: rgba(255, 255, 255, 0.5); white-space: pre;&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;background-color: #fdfdfd; white-space: pre;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;token global&quot; style=&quot;background-color: #fdfdfd; white-space: pre;&quot;&gt;$_SERVER&lt;/span&gt;&lt;span style=&quot;background-color: #fdfdfd; white-space: pre;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;token punctuation&quot; style=&quot;background-color: #fdfdfd; white-space: pre;&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;token string single-quoted-string&quot; style=&quot;background-color: #fdfdfd; white-space: pre;&quot;&gt;&#39;HTTP_USER_AGENT&#39;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot; style=&quot;background-color: #fdfdfd; white-space: pre;&quot;&gt;]&lt;/span&gt;&lt;span class=&quot;token punctuation&quot; style=&quot;background-color: #fdfdfd; white-space: pre;&quot;&gt;;&lt;/span&gt;&lt;span style=&quot;background-color: #fdfdfd; white-space: pre;&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;token delimiter important&quot; style=&quot;background-color: #fdfdfd; white-space: pre;&quot;&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;output:-&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;em style=&quot;background-color: white; color: rgba(0, 0, 0, 0.87); white-space: normal;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Your-User Agent is: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.114 Safari/537.36&lt;/span&gt;&lt;/em&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;example 2:-&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=&quot;font-size: large;&quot;&gt;
&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #5f5035;&quot;&gt;&amp;lt;?php&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;$agent&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;$_SERVER&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&quot;HTTP_USER_AGENT&quot;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon; font-weight: bold;&quot;&gt;if&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #400000;&quot;&gt;preg_match&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&#39;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon;&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;MSIE &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;\d&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0f69ff;&quot;&gt;\.&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;\d&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon;&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&#39;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;$agent&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;{&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon; font-weight: bold;&quot;&gt;echo&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&quot;You&#39;re using Internet Explorer&quot;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;}&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon; font-weight: bold;&quot;&gt;else&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon; font-weight: bold;&quot;&gt;if&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #400000;&quot;&gt;preg_match&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&#39;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon;&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;Chrome&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0f69ff;&quot;&gt;\/&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;\s&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;\d&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0f69ff;&quot;&gt;\.&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;\d&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon;&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&#39;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;$agent&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;{&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon; font-weight: bold;&quot;&gt;echo&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&quot;You&#39;re using Chrome&quot;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;}&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon; font-weight: bold;&quot;&gt;else&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon; font-weight: bold;&quot;&gt;if&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #400000;&quot;&gt;preg_match&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&#39;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon;&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;Edge&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0f69ff;&quot;&gt;\/&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;\d&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon;&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&#39;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;$agent&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;{&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon; font-weight: bold;&quot;&gt;echo&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&quot;You&#39;re using Edge&quot;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;}&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon; font-weight: bold;&quot;&gt;else&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon; font-weight: bold;&quot;&gt;if&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #400000;&quot;&gt;preg_match&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&#39;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon;&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;Firefox&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0f69ff;&quot;&gt;\/&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;\s&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;\d&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0f69ff;&quot;&gt;\.&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;\d&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon;&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&#39;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;$agent&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;{&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon; font-weight: bold;&quot;&gt;echo&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&quot;You&#39;re using Firefox&quot;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;}&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon; font-weight: bold;&quot;&gt;else&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon; font-weight: bold;&quot;&gt;if&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #400000;&quot;&gt;preg_match&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&#39;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon;&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;OPR&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0f69ff;&quot;&gt;\/&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;\s&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;\d&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0f69ff;&quot;&gt;\.&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;\d&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon;&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&#39;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;$agent&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;{&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon; font-weight: bold;&quot;&gt;echo&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&quot;You&#39;re using Opera&quot;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;}&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon; font-weight: bold;&quot;&gt;else&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon; font-weight: bold;&quot;&gt;if&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #400000;&quot;&gt;preg_match&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&#39;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon;&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;Safari&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0f69ff;&quot;&gt;\/&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;\s&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;\d&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0f69ff;&quot;&gt;\.&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;\d&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon;&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&#39;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;$agent&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;{&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon; font-weight: bold;&quot;&gt;echo&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&quot;You&#39;re using Safari&quot;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;}&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: #5f5035;&quot;&gt;?&amp;gt;&lt;/span&gt;
&lt;/pre&gt;
&lt;span style=&quot;font-family: Poppins;&quot;&gt;output:-&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;You&#39;re using Chrome&lt;/span&gt;&lt;/pre&gt;&lt;span style=&quot;font-family: Poppins;&quot;&gt;example 3:-&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=&quot;font-size: large;&quot;&gt;
&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #5f5035;&quot;&gt;&amp;lt;?php&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon; font-weight: bold;&quot;&gt;function&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; getBrowser&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;{&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;$user_agent&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;$_SERVER&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&#39;HTTP_USER_AGENT&#39;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;$browser&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&quot;N/A&quot;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;$browsers&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon; font-weight: bold;&quot;&gt;array&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&#39;/msie/i&#39;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&#39;Internet explorer&#39;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&#39;/firefox/i&#39;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&#39;Firefox&#39;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&#39;/safari/i&#39;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&#39;Safari&#39;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&#39;/chrome/i&#39;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&#39;Chrome&#39;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&#39;/edge/i&#39;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&#39;Edge&#39;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&#39;/opera/i&#39;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&#39;Opera&#39;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&#39;/mobile/i&#39;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&#39;Mobile browser&#39;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon; font-weight: bold;&quot;&gt;foreach&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;$browsers&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon; font-weight: bold;&quot;&gt;as&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;$regex&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;$value&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;{&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon; font-weight: bold;&quot;&gt;if&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #400000;&quot;&gt;preg_match&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;$regex&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;$user_agent&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;{&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;$browser&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;$value&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;}&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;}&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon; font-weight: bold;&quot;&gt;return&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #797997;&quot;&gt;$browser&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;}&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: maroon; font-weight: bold;&quot;&gt;echo&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #0000e6;&quot;&gt;&quot;Browser: &quot;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; &lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt; getBrowser&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232); color: purple;&quot;&gt;;&lt;/span&gt;&lt;span style=&quot;background: rgb(255, 255, 232);&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;background: rgb(255, 255, 232); color: #5f5035;&quot;&gt;?&amp;gt;&lt;/span&gt;
&lt;/pre&gt;
&lt;span style=&quot;font-family: Poppins;&quot;&gt;output :-&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;font-family: Poppins;&quot;&gt;Browser: Chrome
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;div&gt;&lt;code&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;font-family: Poppins;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;</description><link>https://vikramsomai.blogspot.com/2022/01/php-browser-detection-script.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6209014571885946851.post-5844934948391855786</guid><pubDate>Mon, 03 Jan 2022 04:35:00 +0000</pubDate><atom:updated>2022-01-03T10:05:37.019+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Python</category><title>Python program to access a function inside a function</title><description>&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Python program to access a function inside a function&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: #f9fafc; box-sizing: border-box; color: rgba(37, 38, 94, 0.7); font-family: euclid_circular_a, arial, &amp;quot;source sans pro&amp;quot;, &amp;quot;helvetica neue&amp;quot;, helvetica, arial, sans-serif; line-height: 30px; margin: 0px 0px 16px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;A function defined inside another function is called a nested function. Nested functions can access variables of the enclosing scope.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: #f9fafc; box-sizing: border-box; color: rgba(37, 38, 94, 0.7); font-family: euclid_circular_a, arial, &amp;quot;source sans pro&amp;quot;, &amp;quot;helvetica neue&amp;quot;, helvetica, arial, sans-serif; line-height: 30px; margin: 0px 0px 16px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;In Python, these non-local variables are read-only by default and we must declare them explicitly as non-local (using&amp;nbsp;nonlocal keyword) in order to modify them.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Example 1:-&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;pre style=&quot;background: #ffffff; color: black;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;def&lt;/span&gt; main&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;a&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
        &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;def&lt;/span&gt; add&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;b&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
                nonlocal a
                a &lt;span style=&quot;color: #44aadd;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;
                &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;return&lt;/span&gt; a&lt;span style=&quot;color: #44aadd;&quot;&gt;+&lt;/span&gt;b
        &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;return&lt;/span&gt; add
func&lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; main&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;12&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;func&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;12&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/pre&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;output:-&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;25&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Example 2:-&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;pre style=&quot;background: #ffffff; color: black;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;def&lt;/span&gt; print_msg&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;msg&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
    &lt;span style=&quot;color: dimgrey;&quot;&gt;# This is the outer enclosing function&lt;/span&gt;

    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;def&lt;/span&gt; printer&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
        &lt;span style=&quot;color: dimgrey;&quot;&gt;# This is the nested function&lt;/span&gt;
        &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;msg&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;

    printer&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;

&lt;span style=&quot;color: dimgrey;&quot;&gt;# We execute the function&lt;/span&gt;
&lt;span style=&quot;color: dimgrey;&quot;&gt;# Output: Hello&lt;/span&gt;
print_msg&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;Hello&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/pre&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;output:-&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;hello&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Example 3:-&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;pre style=&quot;background: #ffffff; color: black;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;def&lt;/span&gt; outer&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;def&lt;/span&gt; inner&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
        &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;&quot;hello&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;

    inner&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
outer&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: #ffffff; color: black;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;output:-&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: #ffffff; color: black;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;hello&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: #ffffff; color: black;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Example 4:-&lt;/span&gt;&lt;/pre&gt;&lt;p style=&quot;background: rgb(255, 255, 255); color: black; text-align: left;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;pass value to nested function&lt;/span&gt;&lt;/p&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;def&lt;/span&gt; outer&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;n&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;def&lt;/span&gt; inner&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;:&lt;/span&gt;
        &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;print&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;n&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;

    inner&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
outer&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;13&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;output:-&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;13&lt;/span&gt;&lt;/pre&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;/span&gt;&lt;p&gt;&lt;/p&gt;</description><link>https://vikramsomai.blogspot.com/2022/01/python-inner-functions.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6209014571885946851.post-1067328494505579221</guid><pubDate>Sun, 02 Jan 2022 13:49:00 +0000</pubDate><atom:updated>2022-01-02T19:19:36.494+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">tech</category><title>Sell Internet Bandwidth For Earn Money – Sell Data For Passive Income</title><description>&lt;p&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;Sell Internet Bandwidth For Earn Money – Sell Data For Passive Income&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class=&quot;mycenter&quot;&gt;&lt;div class=&quot;entry-content&quot; style=&quot;box-sizing: inherit; letter-spacing: 0.4px; position: relative; z-index: 2;&quot;&gt;&lt;h3 style=&quot;background-color: white; box-sizing: inherit; color: #111111; letter-spacing: -0.01em; line-height: 1.23; margin: 40px 0px 20px; text-transform: uppercase;&quot;&gt;&lt;span style=&quot;box-sizing: inherit; font-family: verdana; font-size: large;&quot;&gt;1. FLUIDSTACK&lt;/span&gt;&lt;/h3&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;img alt=&quot;fluidstack-sell-bandwidth&quot; class=&quot;aligncenter size-full wp-image-2797 entered lazyloaded&quot; data-lazy-sizes=&quot;(max-width: 200px) 100vw, 200px&quot; data-lazy-src=&quot;https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/fluidstack-sell-bandwidth.png&quot; data-lazy-srcset=&quot;https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/fluidstack-sell-bandwidth.png 200w, https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/fluidstack-sell-bandwidth-150x150.png 150w&quot; data-ll-status=&quot;loaded&quot; height=&quot;200&quot; sizes=&quot;(max-width: 200px) 100vw, 200px&quot; src=&quot;https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/fluidstack-sell-bandwidth.png&quot; srcset=&quot;https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/fluidstack-sell-bandwidth.png 200w, https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/fluidstack-sell-bandwidth-150x150.png 150w&quot; style=&quot;border-style: none; box-sizing: inherit; display: block; height: auto; margin: 0px auto 24px; max-width: 100%;&quot; width=&quot;200&quot; /&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;&lt;a href=&quot;https://provider.fluidstack.io/#ref=eHFWNu2UeP&quot; rel=&quot;noopener noreferrer&quot; style=&quot;background-color: transparent; box-sizing: inherit; color: blue; transition: background-color 0.25s ease-in 0s, border-color 0s ease-in 0s, transform 0.75s cubic-bezier(0.44, 0.51, 0.24, 0.99) 0s, box-shadow 1s cubic-bezier(0.44, 0.51, 0.24, 0.99) 0s;&quot; target=&quot;_blank&quot;&gt;FluidStack&lt;/a&gt;&amp;nbsp;is one of the newer players in the bandwidth buying industry, and they operate as a CDN to distribute content to users from nearby networks to increase page load times and overall user experience.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;Once you signup and install FluidStack’s software, they will detect when your computer is idle and use your bandwidth/CPU to serve content.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;The fact that FluidStack uses your CPU instead of GPU helps limit power consumption, and the whole idea of their platform is to only use your computer when it’s idle and to limit how much power you end up using.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;In general,&amp;nbsp;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;here is how its bandwidth speed to payout ratio works&lt;/span&gt;:&lt;/span&gt;&lt;/p&gt;&lt;ul style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px 0px 0px 35px;&quot;&gt;&lt;li style=&quot;box-sizing: inherit; list-style-type: disc;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;&amp;gt;10MB/s upload speed –&amp;nbsp;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;$5/month&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style=&quot;box-sizing: inherit; list-style-type: disc;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;Faster speeds –&amp;nbsp;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;$10 per 100MB/s&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style=&quot;box-sizing: inherit; list-style-type: disc;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;200 MB/s upload speed –&amp;nbsp;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;$20/month&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;img alt=&quot;Fluidstack&quot; class=&quot;aligncenter wp-image-5306 entered lazyloaded&quot; data-lazy-sizes=&quot;(max-width: 699px) 100vw, 699px&quot; data-lazy-src=&quot;https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/Fluidstack-1024x363.png&quot; data-lazy-srcset=&quot;https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/Fluidstack-1024x363.png 1024w, https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/Fluidstack-300x106.png 300w, https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/Fluidstack-768x272.png 768w, https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/Fluidstack.png 1245w&quot; data-ll-status=&quot;loaded&quot; height=&quot;248&quot; sizes=&quot;(max-width: 699px) 100vw, 699px&quot; src=&quot;https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/Fluidstack-1024x363.png&quot; srcset=&quot;https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/Fluidstack-1024x363.png 1024w, https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/Fluidstack-300x106.png 300w, https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/Fluidstack-768x272.png 768w, https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/Fluidstack.png 1245w&quot; style=&quot;border-style: none; box-sizing: inherit; display: block; height: auto; margin: 0px auto 24px; max-width: 100%;&quot; width=&quot;699&quot; /&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;On their website, FluidStack states that you’re basically guaranteed to earn between $5-$50/month with their software based on your internet speed.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;Keep in mind,&amp;nbsp;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;this is per IP address&lt;/span&gt;, so if you have multiple IPs for some reason you could theoretically double dip.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;FluidStack pays out through PayPal and all outstanding balances are processed at the end of the month. FluidStack also plans on releasing some additional ways to earn in the future, including video transcoding and geo-proxies, which will pay more.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;Additionally, FluidStack will be releasing a cloud gaming feature which will allow powerful gaming rigs to host cloud gaming services for as much as $100/month, although we will have to wait and see how this actually unfolds.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;Edit: 03/01/2020:&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://loud%20compute%20customers%20primarily%20want%20access%20to%20machines%20with%20gpus%20running%20fluidstack%20on%20linux.%20these%20machines%20will%20earn%20guaranteed%20flat%20monthly%20payments%20for%20both%20bandwidth%20and%20gpu.%20at%20the%20moment%2C%20windows%20os%20restricts%20gpu%20virtualisation%2C%20meaning%20our%20customers%20cannot%20use%20them.%20we%20have%20some%20demand%20for%20cpu%20tasks%20to%20run%20on%20windows%2C%20and%20we%20will%20contact%20select%20providers%20individually%20about%20this%20in%20the%20coming%20week.%20most%20providers%20who%20are%20not%20running%20fluidstack%20on%20linux%20will%20see%20both%20usage%20and%20payments%20stop%20by%20the%20end%20of%20february.%20linux%20machines%20will%20continue%20to%20earn%20both%20guaranteed%20bandwidth%20and%20gpu%20payments.xn--%20we%20understand%20that%20this%20will%20be%20disappointing%20to%20windows%20providers%20who%20have%20been%20receiving%20payments%20for%20proxy%20and%20cdn%2C%20but%20we%20feel%20that%20its%20a%20necessary%20step%20to%20ensure%20good-j656m/&quot; rel=&quot;noopener noreferrer&quot; style=&quot;background-color: transparent; box-sizing: inherit; color: blue; transition: background-color 0.25s ease-in 0s, border-color 0s ease-in 0s, transform 0.75s cubic-bezier(0.44, 0.51, 0.24, 0.99) 0s, box-shadow 1s cubic-bezier(0.44, 0.51, 0.24, 0.99) 0s;&quot; target=&quot;_blank&quot;&gt;Fluidstack has announced&lt;/a&gt;&amp;nbsp;that they are focusing on cloud computer customers with access to machines with&amp;nbsp;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;GPU’s running Fluidstack on Linux.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;This means that&amp;nbsp;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;most&lt;/span&gt;&amp;nbsp;customers running Windows OS to rent bandwidth will&amp;nbsp;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;no longer be able to make money from Fluidstack&lt;/span&gt;. In contrast, Linux machines now have&amp;nbsp;&lt;a href=&quot;https://intercom.help/fluidstack/en/articles/3652007-linux-gpu-payments&quot; rel=&quot;noopener noreferrer&quot; style=&quot;background-color: transparent; box-sizing: inherit; color: blue; transition: background-color 0.25s ease-in 0s, border-color 0s ease-in 0s, transform 0.75s cubic-bezier(0.44, 0.51, 0.24, 0.99) 0s, box-shadow 1s cubic-bezier(0.44, 0.51, 0.24, 0.99) 0s;&quot; target=&quot;_blank&quot;&gt;guaranteed monthly payments&lt;/a&gt;&amp;nbsp;based on the following models:&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;img alt=&quot;Fluidstack-monthly-payments&quot; class=&quot;aligncenter wp-image-5307 entered lazyloaded&quot; data-lazy-sizes=&quot;(max-width: 400px) 100vw, 400px&quot; data-lazy-src=&quot;https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/Fluidstack-monthly-payments-1024x920.png&quot; data-lazy-srcset=&quot;https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/Fluidstack-monthly-payments-1024x920.png 1024w, https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/Fluidstack-monthly-payments-300x270.png 300w, https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/Fluidstack-monthly-payments-768x690.png 768w, https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/Fluidstack-monthly-payments.png 1026w&quot; data-ll-status=&quot;loaded&quot; height=&quot;359&quot; sizes=&quot;(max-width: 400px) 100vw, 400px&quot; src=&quot;https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/Fluidstack-monthly-payments-1024x920.png&quot; srcset=&quot;https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/Fluidstack-monthly-payments-1024x920.png 1024w, https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/Fluidstack-monthly-payments-300x270.png 300w, https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/Fluidstack-monthly-payments-768x690.png 768w, https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/Fluidstack-monthly-payments.png 1026w&quot; style=&quot;border-style: none; box-sizing: inherit; display: block; height: auto; margin: 0px auto 24px; max-width: 100%;&quot; width=&quot;400&quot; /&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;Fluidstack supports multi-GPU machines and pays out per GPU. Plus, Fluidstack guarantees utilization of 10% or less per month to help manage electricity costs.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;If you have a GPU on your processor and don’t mind running Linux (or already run it), Fluidstack is definitely an excellent way to earn passive income by renting your bandwidth.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;However, if you don’t have a GPU and want a viable Fluidstack alternative, checkout the rest of the platforms in this list!&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;Checkout our&amp;nbsp;&lt;a href=&quot;https://thisonlineworld.com/fluidstack-review/&quot; style=&quot;background-color: transparent; box-sizing: inherit; color: blue; transition: background-color 0.25s ease-in 0s, border-color 0s ease-in 0s, transform 0.75s cubic-bezier(0.44, 0.51, 0.24, 0.99) 0s, box-shadow 1s cubic-bezier(0.44, 0.51, 0.24, 0.99) 0s;&quot;&gt;Fluidstack review&lt;/a&gt;&amp;nbsp;for all the latest info!&lt;/span&gt;&lt;/p&gt;&lt;h3 style=&quot;background-color: white; box-sizing: inherit; color: #111111; letter-spacing: -0.01em; line-height: 1.23; margin: 40px 0px 20px; text-transform: uppercase;&quot;&gt;&lt;span style=&quot;box-sizing: inherit; font-family: verdana; font-size: large;&quot;&gt;2. PACKETSTREAM&lt;/span&gt;&lt;/h3&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;img alt=&quot;packetstream-logo&quot; class=&quot;aligncenter size-full wp-image-2801 entered lazyloaded&quot; data-lazy-src=&quot;https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/packetstream-logo.png&quot; data-ll-status=&quot;loaded&quot; height=&quot;200&quot; src=&quot;https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/packetstream-logo.png&quot; style=&quot;border-style: none; box-sizing: inherit; display: block; height: auto; margin: 0px auto 24px; max-width: 100%;&quot; width=&quot;175&quot; /&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;PacketStream is another peer-to-peer network where people can use other people’s IP addresses (for a price).&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;PacketStream allows users to become nodes in their network from anywhere in the world, provided you have a residential IP address.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;&lt;span style=&quot;box-sizing: inherit; font-weight: 700;&quot;&gt;If you sell your internet bandwidth through PacketStream, you earn $0.10/GB as the software runs in the background of your computer&lt;/span&gt;.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;PacketStream charges buyers $1.00/GB, and part of the problem is that free platforms like TOR essentially allow users to browse the web anonymously as well. From what I gather, this means PacketStream is a bit weak on the buy side currently, so your earnings will probably be slow and steady.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;&lt;a href=&quot;https://www.reddit.com/r/beermoney/comments/c5iwsr/ive_uninstalled_packetstream_maybe_you_should_too/&quot; rel=&quot;noopener noreferrer&quot; style=&quot;background-color: transparent; box-sizing: inherit; color: blue; transition: background-color 0.25s ease-in 0s, border-color 0s ease-in 0s, transform 0.75s cubic-bezier(0.44, 0.51, 0.24, 0.99) 0s, box-shadow 1s cubic-bezier(0.44, 0.51, 0.24, 0.99) 0s;&quot; target=&quot;_blank&quot;&gt;Some users are also uninstalling Packetstream&lt;/a&gt;&amp;nbsp;due to concerns over how their platform is used by customers, so I’d be a bit careful with this service/do more research.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;PacketStream states that their main clients are businesses who need to test web applications/ads without running into IP bans or detection (which is pretty common with VPNs).&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;You can run PacketStream on Windows, Linux, and Mac, and payouts are done via PayPal once you reach $5.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;a href=&quot;https://packetstream.io/?psr=1Ozs&quot; target=&quot;_blank&quot;&gt;join now&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;h3 style=&quot;background-color: white; box-sizing: inherit; color: #111111; letter-spacing: -0.01em; line-height: 1.23; margin: 40px 0px 20px; text-transform: uppercase;&quot;&gt;&lt;span style=&quot;box-sizing: inherit; font-family: verdana; font-size: large;&quot;&gt;3. HONEYGAIN&lt;/span&gt;&lt;/h3&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;img alt=&quot;honeygain-sell-bandwidth&quot; class=&quot;aligncenter wp-image-2805 entered lazyloaded&quot; data-lazy-sizes=&quot;(max-width: 200px) 100vw, 200px&quot; data-lazy-src=&quot;https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/honeygain-sell-bandwidth-300x300.png&quot; data-lazy-srcset=&quot;https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/honeygain-sell-bandwidth-300x300.png 300w, https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/honeygain-sell-bandwidth-150x150.png 150w, https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/honeygain-sell-bandwidth.png 400w&quot; data-ll-status=&quot;loaded&quot; height=&quot;200&quot; sizes=&quot;(max-width: 200px) 100vw, 200px&quot; src=&quot;https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/honeygain-sell-bandwidth-300x300.png&quot; srcset=&quot;https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/honeygain-sell-bandwidth-300x300.png 300w, https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/honeygain-sell-bandwidth-150x150.png 150w, https://i2.wp.com/thisonlineworld.com/wp-content/uploads/2019/07/honeygain-sell-bandwidth.png 400w&quot; style=&quot;border-style: none; box-sizing: inherit; display: block; height: auto; margin: 0px auto 24px; max-width: 100%;&quot; width=&quot;200&quot; /&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;Honeygain is one of the newer players in this industry, and the app has gotten a lot of love and hate in&amp;nbsp;&lt;a href=&quot;https://www.reddit.com/r/beermoneyglobal/comments/bycnsp/new_passive_earning_app_for_android/&quot; rel=&quot;noopener noreferrer&quot; style=&quot;background-color: transparent; box-sizing: inherit; color: blue; transition: background-color 0.25s ease-in 0s, border-color 0s ease-in 0s, transform 0.75s cubic-bezier(0.44, 0.51, 0.24, 0.99) 0s, box-shadow 1s cubic-bezier(0.44, 0.51, 0.24, 0.99) 0s;&quot; target=&quot;_blank&quot;&gt;various Reddit communities&lt;/a&gt;.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;With a global user base and the ability to be run on windows&amp;nbsp;&lt;em style=&quot;box-sizing: inherit;&quot;&gt;and&amp;nbsp;&lt;/em&gt;android devices, Honeygain seems pretty appealing at first glance. After all, most software that allows you to sell bandwidth does not work on mobile devices.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;However, Honeygain does have a $20 cashout threshold via PayPal, and they only pay $1USD/10GB of bandwidth used.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;From what I’ve seen on Reddit, the buy side can be pretty limited, so earning performance is rather volatile. It seems like some users are cashing out $40+ a month while others can barely make a dollar.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;&lt;span face=&quot;Manrope, -apple-system, &amp;quot;Helvetica Neue&amp;quot;, Arial, &amp;quot;Segoe UI&amp;quot;, sans-serif&quot; style=&quot;color: #232836; font-weight: 700; letter-spacing: normal;&quot;&gt;What does the Honeygain app do? Is it sa&lt;/span&gt;&lt;span face=&quot;Manrope, -apple-system, &amp;quot;Helvetica Neue&amp;quot;, Arial, &amp;quot;Segoe UI&amp;quot;, sans-serif&quot; style=&quot;color: #232836; font-weight: 700; letter-spacing: normal;&quot;&gt;fe?&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;color: #232836; font-family: verdana; font-size: large; letter-spacing: normal;&quot;&gt;The app facilitates proxy services to third parties, such as data scientists, Fortune 500, and other trustworthy companies. Is it safe? Yes! Your security is important to us. And as the queen bee knows her bees, we know what every partner uses their network for.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;color: #232836; font-family: verdana; font-size: large; font-weight: 700; letter-spacing: normal;&quot;&gt;What is the minimum payout?&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span style=&quot;color: #232836; font-family: verdana; font-size: large; letter-spacing: normal;&quot;&gt;The minimum payout is 20USD.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #333333; margin: 0px 0px 28px; padding: 0px;&quot;&gt;&lt;span face=&quot;Manrope, -apple-system, &amp;quot;Helvetica Neue&amp;quot;, Arial, &amp;quot;Segoe UI&amp;quot;, sans-serif&quot; style=&quot;color: #232836; letter-spacing: normal;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;Earn free $5 using this link &lt;a href=&quot;https://r.honeygain.me/VIKRACCFF1&quot; target=&quot;_blank&quot;&gt;click here&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #262524; letter-spacing: normal; line-height: 1.75; margin: 1.5rem 0px 3rem;&quot;&gt;&lt;span style=&quot;font-weight: 700;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;4.&lt;a href=&quot;https://iproyal.com/pawns?r=453077&quot; target=&quot;_blank&quot;&gt;IPRoyal&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #262524; letter-spacing: normal; line-height: 1.75; margin: 1.5rem 0px 3rem;&quot;&gt;&lt;a data-wpel-link=&quot;external&quot; href=&quot;https://iproyal.com/pawns?r=453077&quot; rel=&quot;noopener nofollow external&quot; style=&quot;background-color: transparent; box-sizing: inherit; color: #ff4e00; cursor: pointer; font-family: verdana; font-size: x-large; text-decoration-line: none;&quot; target=&quot;_blank&quot;&gt;IPRoyal&lt;/a&gt;&lt;span style=&quot;font-family: verdana; font-size: x-large;&quot;&gt;&amp;nbsp;is a relatively new website that few people are aware of. Although several bloggers claim it is the best website for selling internet bandwidth.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #262524; letter-spacing: normal; line-height: 1.75; margin: 1.5rem 0px 3rem;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;They pay $0.20 for every one GB of shared data.&lt;/span&gt;&lt;/p&gt;&lt;div style=&quot;letter-spacing: normal;&quot;&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #262524; line-height: 1.75; margin: 1.5rem 0px 3rem;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;The website’s user experience is straightforward.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #262524; line-height: 1.75; margin: 1.5rem 0px 3rem;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;Furthermore, because few people are aware of the website, you will have a better chance of sharing more bandwidth.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #262524; line-height: 1.75; margin: 1.5rem 0px 3rem;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;&lt;a href=&quot;https://iproyal.com/pawns?r=453077&quot;&gt;join now&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #262524; line-height: 1.75; margin: 1.5rem 0px 3rem;&quot;&gt;&lt;span style=&quot;font-weight: 700;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;5.&lt;a href=&quot;https://peer2profit.com/r/164066821061ca9c32864c9/en&quot;&gt;Peer2profit&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #262524; line-height: 1.75; margin: 1.5rem 0px 3rem;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;&lt;a data-wpel-link=&quot;external&quot; href=&quot;https://packetstream.io/?psr=1Ozs&quot; rel=&quot;noopener nofollow external&quot; style=&quot;box-sizing: inherit; color: #ff4e00; cursor: pointer; text-decoration-line: none;&quot; target=&quot;_blank&quot;&gt;Peer2profit&lt;/a&gt;&amp;nbsp;is yet another fantastic peer-to-peer bandwidth-sharing network. Every month you can make $6 – $75. Remember, the larger your network, the more money you’ll make. This is one of the best options for sharing network bandwidth worldwide.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #262524; line-height: 1.75; margin: 1.5rem 0px 3rem;&quot;&gt;&lt;/p&gt;&lt;div class=&quot;separator&quot; style=&quot;background-color: white; clear: both; color: black; text-align: center;&quot;&gt;&lt;a href=&quot;https://geekflare.com/wp-content/uploads/2021/12/peer2profit2.jpg&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;351&quot; data-original-width=&quot;800&quot; height=&quot;276&quot; src=&quot;https://geekflare.com/wp-content/uploads/2021/12/peer2profit2.jpg&quot; width=&quot;628&quot; /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;span style=&quot;background-color: white; color: black; font-family: verdana; font-size: large;&quot;&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;p style=&quot;background-color: white; color: black;&quot;&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #262524; line-height: 1.75; margin: 1.5rem 0px 3rem;&quot;&gt;&lt;span style=&quot;font-family: verdana; font-size: large;&quot;&gt;They also have a referral program. For every 30 referrals, they pay around $100. They have multiple payout platforms like&amp;nbsp;&lt;a data-wpel-link=&quot;internal&quot; href=&quot;https://geekflare.com/finance/bitcoin-mining-for-dummies&quot; rel=&quot;noopener&quot; style=&quot;box-sizing: inherit; color: #ff4e00; cursor: pointer; text-decoration-line: none;&quot; target=&quot;_blank&quot;&gt;Bitcoin&lt;/a&gt;, Ethereum, Litecoin, WebMoney, etc.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;background-color: white; box-sizing: inherit; color: #262524; line-height: 1.75; margin: 1.5rem 0px 3rem;&quot;&gt;&lt;a href=&quot;https://peer2profit.com/r/164066821061ca9c32864c9/en&quot; style=&quot;font-family: verdana; font-size: x-large; text-align: center;&quot; target=&quot;_blank&quot;&gt;join now&amp;nbsp;&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description><link>https://vikramsomai.blogspot.com/2022/01/sell-internet-bandwidth-for-earn-money.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6209014571885946851.post-3715135223294968024</guid><pubDate>Sun, 02 Jan 2022 04:55:00 +0000</pubDate><atom:updated>2022-01-02T10:25:26.157+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">c</category><category domain="http://www.blogger.com/atom/ns#">c++</category><title>Student Database Management System in C with Source Code</title><description>&lt;h1 style=&quot;background-color: #f9fafc; box-sizing: border-box; line-height: 54px; margin: 0px 0px 20px; padding: 0px;&quot;&gt;&lt;span style=&quot;color: #351c75; font-family: Poppins; font-size: large;&quot;&gt;C Program to Store Information of Students Using Structure&lt;/span&gt;&lt;/h1&gt;&lt;div&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&lt;b&gt;Method 1:-&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&lt;span style=&quot;color: #004a43;&quot;&gt;#&lt;/span&gt;&lt;span style=&quot;color: #004a43;&quot;&gt;include&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&quot;color: #40015a;&quot;&gt;stdio.h&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&amp;gt;&lt;/span&gt;
&lt;span style=&quot;color: #004a43;&quot;&gt;#&lt;/span&gt;&lt;span style=&quot;color: #004a43;&quot;&gt;include&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&quot;color: #40015a;&quot;&gt;conio.h&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&amp;gt;&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;struct&lt;/span&gt; student &lt;span style=&quot;color: purple;&quot;&gt;{&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;char&lt;/span&gt; name&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;20&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;int&lt;/span&gt; roll&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;float&lt;/span&gt; marks&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
&lt;span style=&quot;color: purple;&quot;&gt;}&lt;/span&gt; s&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;5&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;

&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;int&lt;/span&gt; &lt;span style=&quot;color: #400000;&quot;&gt;main&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt; &lt;span style=&quot;color: purple;&quot;&gt;{&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;int&lt;/span&gt; i&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;n&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;

  &lt;span style=&quot;color: #603000;&quot;&gt;printf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Enter how many records you want to store:-&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
  &lt;span style=&quot;color: #603000;&quot;&gt;scanf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #007997;&quot;&gt;%d&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;&amp;amp;&lt;/span&gt;n&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
    &lt;span style=&quot;color: dimgrey;&quot;&gt;// storing information&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;for&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;i &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt; i &lt;span style=&quot;color: #808030;&quot;&gt;&amp;lt;&lt;/span&gt; n&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;+&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt; &lt;span style=&quot;color: purple;&quot;&gt;{&lt;/span&gt;
        s&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;roll &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; i &lt;span style=&quot;color: #808030;&quot;&gt;+&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #603000;&quot;&gt;printf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\n&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Enter roll no: &lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #603000;&quot;&gt;scanf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #007997;&quot;&gt;%d&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;&amp;amp;&lt;/span&gt;s&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;roll&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #603000;&quot;&gt;printf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Enter first name: &lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #603000;&quot;&gt;scanf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #007997;&quot;&gt;%s&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; s&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;name&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #603000;&quot;&gt;printf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Enter marks: &lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #603000;&quot;&gt;scanf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #007997;&quot;&gt;%f&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;&amp;amp;&lt;/span&gt;s&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;marks&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
    &lt;span style=&quot;color: purple;&quot;&gt;}&lt;/span&gt;
    &lt;span style=&quot;color: #603000;&quot;&gt;printf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Displaying Information:&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\n&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\n&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;

    &lt;span style=&quot;color: dimgrey;&quot;&gt;// displaying information&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;for&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;i &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt; i &lt;span style=&quot;color: #808030;&quot;&gt;&amp;lt;&lt;/span&gt; n&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;+&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt; &lt;span style=&quot;color: purple;&quot;&gt;{&lt;/span&gt;
        &lt;span style=&quot;color: #603000;&quot;&gt;printf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\n&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Roll number: &lt;/span&gt;&lt;span style=&quot;color: #007997;&quot;&gt;%d&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\n&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; i &lt;span style=&quot;color: #808030;&quot;&gt;+&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #603000;&quot;&gt;printf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;First name: &lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #603000;&quot;&gt;puts&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;s&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;name&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #603000;&quot;&gt;printf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Marks: &lt;/span&gt;&lt;span style=&quot;color: #007997;&quot;&gt;%.1f&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; s&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;marks&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #603000;&quot;&gt;printf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\n&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
    &lt;span style=&quot;color: purple;&quot;&gt;}&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;return&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
&lt;span style=&quot;color: purple;&quot;&gt;}&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&lt;b&gt;output:-&lt;/b&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Enter how many records you want to store:-2

Enter roll no: 1
Enter first name: ram
Enter marks: 100

Enter roll no: 2
Enter first name: rahul
Enter marks: 90
Displaying Information:


Roll number: 1
First name: ram
Marks: 100.0

Roll number: 2
First name: rahul
Marks: 90.0&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Method 2:-&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot;&gt;&lt;/p&gt;&lt;pre style=&quot;background: #ffffff; color: black;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&lt;span style=&quot;color: #004a43;&quot;&gt;#&lt;/span&gt;&lt;span style=&quot;color: #004a43;&quot;&gt;include &lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&quot;color: #40015a;&quot;&gt;stdio.h&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&amp;gt;&lt;/span&gt;

&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;struct&lt;/span&gt; student
&lt;span style=&quot;color: purple;&quot;&gt;{&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;int&lt;/span&gt; rollno&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;char&lt;/span&gt; name&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;80&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;int&lt;/span&gt; marks&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
&lt;span style=&quot;color: purple;&quot;&gt;}&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;

&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;void&lt;/span&gt; accept&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;struct&lt;/span&gt; student&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;int&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;void&lt;/span&gt; display&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;struct&lt;/span&gt; student&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;int&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;void&lt;/span&gt; search&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;struct&lt;/span&gt; student&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;int&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;int&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;int&lt;/span&gt; findMax&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;struct&lt;/span&gt; student&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;int&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;void&lt;/span&gt; toppers&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;struct&lt;/span&gt; student&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;int&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;

&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;int&lt;/span&gt; &lt;span style=&quot;color: #400000;&quot;&gt;main&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;span style=&quot;color: purple;&quot;&gt;{&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;struct&lt;/span&gt; student data&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;20&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;int&lt;/span&gt; n&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; choice&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; rollno&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;

    &lt;span style=&quot;color: #603000;&quot;&gt;printf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Number of records you want to enter? : &lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
    &lt;span style=&quot;color: #603000;&quot;&gt;scanf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #007997;&quot;&gt;%d&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;&amp;amp;&lt;/span&gt;n&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
    accept&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;data&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; n&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;do&lt;/span&gt;
    &lt;span style=&quot;color: purple;&quot;&gt;{&lt;/span&gt;

        &lt;span style=&quot;color: #603000;&quot;&gt;printf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\n&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Result Menu :&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\n&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #603000;&quot;&gt;printf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Press 1 to display all records.&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\n&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #603000;&quot;&gt;printf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Press 2 to search a record.&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\n&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #603000;&quot;&gt;printf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Press 3 to display toppers names.&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\n&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #603000;&quot;&gt;printf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Press 0 to exit&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\n&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #603000;&quot;&gt;printf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\n&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Enter choice(0-3) : &lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #603000;&quot;&gt;scanf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #007997;&quot;&gt;%d&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;&amp;amp;&lt;/span&gt;choice&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;switch&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;choice&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
        &lt;span style=&quot;color: purple;&quot;&gt;{&lt;/span&gt;
            &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;case &lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: #e34adc;&quot;&gt;:&lt;/span&gt;
                display&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;data&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; n&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
                &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;break&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
            &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;case &lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;2&lt;/span&gt;&lt;span style=&quot;color: #e34adc;&quot;&gt;:&lt;/span&gt;
                &lt;span style=&quot;color: #603000;&quot;&gt;printf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Enter roll number to search : &lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
                &lt;span style=&quot;color: #603000;&quot;&gt;scanf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #007997;&quot;&gt;%d&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;&amp;amp;&lt;/span&gt;rollno&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
                search&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;data&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; n&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; rollno&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
                &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;break&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
            &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;case &lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;3&lt;/span&gt;&lt;span style=&quot;color: #e34adc;&quot;&gt;:&lt;/span&gt;
                toppers&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;data&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; n&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: purple;&quot;&gt;}&lt;/span&gt;
    &lt;span style=&quot;color: purple;&quot;&gt;}&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;while&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;choice &lt;span style=&quot;color: #808030;&quot;&gt;!&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;

    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;return&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
&lt;span style=&quot;color: purple;&quot;&gt;}&lt;/span&gt;

&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;void&lt;/span&gt; accept&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;struct&lt;/span&gt; student list&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;80&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;int&lt;/span&gt; s&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;span style=&quot;color: purple;&quot;&gt;{&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;int&lt;/span&gt; i&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;for&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;i &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt; i &lt;span style=&quot;color: #808030;&quot;&gt;&amp;lt;&lt;/span&gt; s&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt; i&lt;span style=&quot;color: #808030;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
    &lt;span style=&quot;color: purple;&quot;&gt;{&lt;/span&gt;
        &lt;span style=&quot;color: #603000;&quot;&gt;printf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\n&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Enter data for Record #&lt;/span&gt;&lt;span style=&quot;color: #007997;&quot;&gt;%d&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; i &lt;span style=&quot;color: #808030;&quot;&gt;+&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;

        &lt;span style=&quot;color: #603000;&quot;&gt;printf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\n&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Enter rollno : &lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #603000;&quot;&gt;scanf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #007997;&quot;&gt;%d&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;&amp;amp;&lt;/span&gt;list&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;rollno&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #603000;&quot;&gt;fflush&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #603000;&quot;&gt;stdin&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #603000;&quot;&gt;printf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Enter name : &lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #603000;&quot;&gt;gets&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;list&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;name&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;

        &lt;span style=&quot;color: #603000;&quot;&gt;printf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Enter marks : &lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: #603000;&quot;&gt;scanf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #007997;&quot;&gt;%d&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;&amp;amp;&lt;/span&gt;list&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;marks&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
    &lt;span style=&quot;color: purple;&quot;&gt;}&lt;/span&gt; 
&lt;span style=&quot;color: purple;&quot;&gt;}&lt;/span&gt;

&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;void&lt;/span&gt; display&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;struct&lt;/span&gt; student list&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;80&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;int&lt;/span&gt; s&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;span style=&quot;color: purple;&quot;&gt;{&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;int&lt;/span&gt; i&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;

    &lt;span style=&quot;color: #603000;&quot;&gt;printf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\n&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\n&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Rollno&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\t&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Name&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\t&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Marks&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\n&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;for&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;i &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt; i &lt;span style=&quot;color: #808030;&quot;&gt;&amp;lt;&lt;/span&gt; s&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt; i&lt;span style=&quot;color: #808030;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
    &lt;span style=&quot;color: purple;&quot;&gt;{&lt;/span&gt;
        &lt;span style=&quot;color: #603000;&quot;&gt;printf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #007997;&quot;&gt;%d&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\t&lt;/span&gt;&lt;span style=&quot;color: #007997;&quot;&gt;%s&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\t&lt;/span&gt;&lt;span style=&quot;color: #007997;&quot;&gt;%d&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\n&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; list&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;rollno&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; list&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;name&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; list&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;marks&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
    &lt;span style=&quot;color: purple;&quot;&gt;}&lt;/span&gt; 
&lt;span style=&quot;color: purple;&quot;&gt;}&lt;/span&gt;

&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;void&lt;/span&gt; search&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;struct&lt;/span&gt; student list&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;80&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;int&lt;/span&gt; s&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;int&lt;/span&gt; number&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;span style=&quot;color: purple;&quot;&gt;{&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;int&lt;/span&gt; i&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;

    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;for&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;i &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt; i &lt;span style=&quot;color: #808030;&quot;&gt;&amp;lt;&lt;/span&gt; s&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt; i&lt;span style=&quot;color: #808030;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
    &lt;span style=&quot;color: purple;&quot;&gt;{&lt;/span&gt;
        &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;if&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;list&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;rollno &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; number&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
        &lt;span style=&quot;color: purple;&quot;&gt;{&lt;/span&gt;
            &lt;span style=&quot;color: #603000;&quot;&gt;printf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Rollno : &lt;/span&gt;&lt;span style=&quot;color: #007997;&quot;&gt;%d&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\n&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Name : &lt;/span&gt;&lt;span style=&quot;color: #007997;&quot;&gt;%s&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\n&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Marks : &lt;/span&gt;&lt;span style=&quot;color: #007997;&quot;&gt;%d&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\n&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; list&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;rollno&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;
                list&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;name&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; list&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;marks&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
            &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;return&lt;/span&gt; &lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: purple;&quot;&gt;}&lt;/span&gt; 
    &lt;span style=&quot;color: purple;&quot;&gt;}&lt;/span&gt;
    &lt;span style=&quot;color: #603000;&quot;&gt;printf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000e6;&quot;&gt;Record not Found&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\n&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
&lt;span style=&quot;color: purple;&quot;&gt;}&lt;/span&gt;

&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;int&lt;/span&gt; findMax&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;struct&lt;/span&gt; student list&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;int&lt;/span&gt; s&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;span style=&quot;color: purple;&quot;&gt;{&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;int&lt;/span&gt; i&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #603000;&quot;&gt;max&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;

    &lt;span style=&quot;color: #603000;&quot;&gt;max&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; list&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;marks&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;for&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;i &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt; i &lt;span style=&quot;color: #808030;&quot;&gt;&amp;lt;&lt;/span&gt; s&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt; i&lt;span style=&quot;color: #808030;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
    &lt;span style=&quot;color: purple;&quot;&gt;{&lt;/span&gt;
        &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;if&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;list&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;marks &lt;span style=&quot;color: #808030;&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span style=&quot;color: #603000;&quot;&gt;max&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
        &lt;span style=&quot;color: purple;&quot;&gt;{&lt;/span&gt;
            &lt;span style=&quot;color: #603000;&quot;&gt;max&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; list&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;marks&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: purple;&quot;&gt;}&lt;/span&gt; 
    &lt;span style=&quot;color: purple;&quot;&gt;}&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;return&lt;/span&gt; &lt;span style=&quot;color: #603000;&quot;&gt;max&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
&lt;span style=&quot;color: purple;&quot;&gt;}&lt;/span&gt;

&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;void&lt;/span&gt; toppers&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;struct&lt;/span&gt; student list&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;int&lt;/span&gt; s&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;span style=&quot;color: purple;&quot;&gt;{&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;int&lt;/span&gt; i&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;for&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;i &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #008c00;&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt; i &lt;span style=&quot;color: #808030;&quot;&gt;&amp;lt;&lt;/span&gt; s&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt; i&lt;span style=&quot;color: #808030;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
    &lt;span style=&quot;color: purple;&quot;&gt;{&lt;/span&gt;
        &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;if&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;list&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;marks &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; findMax&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;list&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; s&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
        &lt;span style=&quot;color: purple;&quot;&gt;{&lt;/span&gt;
            &lt;span style=&quot;color: #603000;&quot;&gt;printf&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #007997;&quot;&gt;%s&lt;/span&gt;&lt;span style=&quot;color: #0f69ff;&quot;&gt;\n&lt;/span&gt;&lt;span style=&quot;color: maroon;&quot;&gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt; list&lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;name&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;;&lt;/span&gt;
        &lt;span style=&quot;color: purple;&quot;&gt;}&lt;/span&gt; 
    &lt;span style=&quot;color: purple;&quot;&gt;}&lt;/span&gt;
&lt;span style=&quot;color: purple;&quot;&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/pre&gt;&lt;p&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&lt;b&gt;output:-&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Number of records you want to enter? : 2&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Enter data for Record #1&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Enter rollno : 1&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Enter name : rahul&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Enter marks : 100&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Enter data for Record #2&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Enter rollno : 2&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Enter name : ram&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Enter marks : 90&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Result Menu :&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Press 1 to display all records.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Press 2 to search a record.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Press 3 to display toppers names.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Press 0 to exit&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Enter choice(0-3) : 1&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Rollno&amp;nbsp; Name&amp;nbsp; &amp;nbsp; Marks&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;rahul&amp;nbsp; &amp;nbsp;100&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ram&amp;nbsp; &amp;nbsp; &amp;nbsp;90&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Result Menu :&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Press 1 to display all records.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Press 2 to search a record.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Press 3 to display toppers names.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Press 0 to exit&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Enter choice(0-3) : 2&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Enter roll number to search : 1&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Rollno : 1&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Name : rahul&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Marks : 100&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Result Menu :&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Press 1 to display all records.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Press 2 to search a record.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Press 3 to display toppers names.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Press 0 to exit&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Enter choice(0-3) : 3&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;rahul&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Result Menu :&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Press 1 to display all records.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Press 2 to search a record.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Press 3 to display toppers names.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Press 0 to exit&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: large;&quot;&gt;Enter choice(0-3) : 0&lt;/span&gt;&lt;/p&gt;</description><link>https://vikramsomai.blogspot.com/2022/01/student-database-management-system-in-c.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6209014571885946851.post-6988133075921487747</guid><pubDate>Sat, 01 Jan 2022 12:54:00 +0000</pubDate><atom:updated>2022-01-01T18:24:48.261+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">PHP</category><title>PHP Regular Expressions</title><description>&lt;h2 style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif; text-align: justify; text-indent: 5px;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;PHP regular expressions&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;&lt;span style=&quot;font-family: Verdana, sans-serif; text-align: justify; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;PHP
regular expressions seems to be a quite complicated area especially if you are
not an experienced Unix user. Historically regular expressions were originally
designed to help working with strings under Unix systems.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Using regular
expressions you can easy find a pattern in a string and/or replace it if you
want. This is a very powerful tool in your hand, but be careful as it is slower
than the standard string manipulation functions.&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;strong&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Regular expression
types&lt;/span&gt;&lt;/strong&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;There are 2 types
of&amp;nbsp; regular expressions:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; mso-list: l3 level1 lfo1; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;POSIX
     Extended&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; mso-list: l3 level1 lfo1; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Perl
     Compatible&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p style=&quot;line-height: 18.0pt; text-align: justify;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;The ereg, eregi, ...
are the POSIX versions and preg_match, preg_replace, ... are the Perl version.
It is important that using Perl compatible regular expressions the expression
should be enclosed in the delimiters, a forward slash (/). However this version
is more powerful and faster as well than the POSIX one.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;strong&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;The regular
expressions basic syntax&lt;/span&gt;&lt;/strong&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;To use regular
expressions first you need to learn the syntax of the patterns. &lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;We can group the characters inside a
pattern like this:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; mso-list: l6 level1 lfo2; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Normal characters
     which match themselves like hello&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; mso-list: l6 level1 lfo2; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Start and end
     indicators as ^ and $&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; mso-list: l6 level1 lfo2; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Count indicators like
     +,*,?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; mso-list: l6 level1 lfo2; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Logical operator like
     |&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; mso-list: l6 level1 lfo2; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Grouping with {},(),[]&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;An example pattern to
check valid emails looks like this:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;pre style=&quot;background: white; line-height: 12.6pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;Code: &lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: white; line-height: 12.6pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;^[a-zA-Z0-9._-]+@[a-zA-Z0-9-]+\.[a-zA-Z.]{2,5}$&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;The code to check the
email using Perl compatible regular expression looks like this:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;div style=&quot;background: #F0F0FF; border: solid #D0D0D0 1.0pt; mso-border-alt: solid #D0D0D0 .75pt; mso-element: para-border-div; padding: 0in 0in 0in 0in;&quot;&gt;&lt;pre style=&quot;background: #F0F0FF; border: none; line-height: 12.6pt; mso-border-alt: solid #D0D0D0 .75pt; mso-padding-alt: 0in 0in 0in 0in; padding: 0in; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;Code: &lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;div style=&quot;background: whitesmoke; border: solid #D0D0D0 1.0pt; margin-left: .25in; margin-right: 0in; mso-border-alt: solid #D0D0D0 .75pt; mso-element: para-border-div; padding: 0in 0in 0in 0in;&quot;&gt;&lt;pre style=&quot;background: whitesmoke; border: none; margin-left: .25in; mso-border-alt: solid #D0D0D0 .75pt; mso-list: l2 level1 lfo3; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; mso-padding-alt: 0in 0in 0in 0in; padding: 0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;1.&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;; font-stretch: normal; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span class=&quot;re0&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt;$pattern&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt; = &lt;span class=&quot;st0&quot;&gt;&quot;/^[a-zA-Z0-9._-]+@[a-zA-Z0-9-]+&lt;/span&gt;&lt;span class=&quot;es0&quot;&gt;&lt;b&gt;\.&lt;/b&gt;&lt;/span&gt;&lt;span class=&quot;st0&quot;&gt;[a-zA-Z.]{2,5}$/&quot;&lt;/span&gt;;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: whitesmoke; border: none; margin-left: .25in; mso-border-alt: solid #D0D0D0 .75pt; mso-list: l2 level1 lfo3; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; mso-padding-alt: 0in 0in 0in 0in; padding: 0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;2.&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;; font-stretch: normal; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span class=&quot;re0&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt;$email&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;= &lt;span class=&quot;st0&quot;&gt;&quot;jim@demo.com&quot;&lt;/span&gt;;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: whitesmoke; border: none; margin-left: .25in; mso-border-alt: solid #D0D0D0 .75pt; mso-list: l2 level1 lfo3; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; mso-padding-alt: 0in 0in 0in 0in; padding: 0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;3.&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;; font-stretch: normal; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: whitesmoke; border: none; margin-left: .25in; mso-border-alt: solid #D0D0D0 .75pt; mso-list: l2 level1 lfo3; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; mso-padding-alt: 0in 0in 0in 0in; padding: 0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;4.&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;; font-stretch: normal; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span class=&quot;kw1&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt;if&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt; &lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;a href=&quot;http://www.phpf1.com/manual/preg_match&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;&lt;b&gt;&lt;span style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;preg_match&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;re0&quot;&gt;$pattern&lt;/span&gt;,&lt;span class=&quot;re0&quot;&gt;$email&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;))&lt;/span&gt; &lt;a href=&quot;http://www.phpf1.com/manual/echo&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;&lt;b&gt;&lt;span style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;echo&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/a&gt; &lt;span class=&quot;st0&quot;&gt;&quot;Match&quot;&lt;/span&gt;;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: whitesmoke; border: none; margin-left: .25in; mso-border-alt: solid #D0D0D0 .75pt; mso-list: l2 level1 lfo3; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; mso-padding-alt: 0in 0in 0in 0in; padding: 0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;5.&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;; font-stretch: normal; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span class=&quot;kw1&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt;else&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt; &lt;a href=&quot;http://www.phpf1.com/manual/echo&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;&lt;b&gt;&lt;span style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;echo&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/a&gt; &lt;span class=&quot;st0&quot;&gt;&quot;Not match&quot;&lt;/span&gt;;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;div style=&quot;background: #F0F0FF; border: solid #D0D0D0 1.0pt; mso-border-alt: solid #D0D0D0 .75pt; mso-element: para-border-div; padding: 0in 0in 0in 0in;&quot;&gt;&lt;pre style=&quot;background: #F0F0FF; border: none; line-height: 12.6pt; mso-border-alt: solid #D0D0D0 .75pt; mso-padding-alt: 0in 0in 0in 0in; padding: 0in; text-align: right;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;&lt;a href=&quot;http://www.phpf1.com/&quot;&gt;PHP F1&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;And very similar in
case of POSIX extended regular expressions:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;div style=&quot;background: #F0F0FF; border: solid #D0D0D0 1.0pt; mso-border-alt: solid #D0D0D0 .75pt; mso-element: para-border-div; padding: 0in 0in 0in 0in;&quot;&gt;&lt;pre style=&quot;background: #F0F0FF; border: none; line-height: 12.6pt; mso-border-alt: solid #D0D0D0 .75pt; mso-padding-alt: 0in 0in 0in 0in; padding: 0in; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;Code: &lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;div style=&quot;background: whitesmoke; border: solid #D0D0D0 1.0pt; margin-left: .25in; margin-right: 0in; mso-border-alt: solid #D0D0D0 .75pt; mso-element: para-border-div; padding: 0in 0in 0in 0in;&quot;&gt;&lt;pre style=&quot;background: whitesmoke; border: none; margin-left: .25in; mso-border-alt: solid #D0D0D0 .75pt; mso-list: l0 level1 lfo4; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; mso-padding-alt: 0in 0in 0in 0in; padding: 0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;1.&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;; font-stretch: normal; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span class=&quot;re0&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt;$pattern&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt; = &lt;span class=&quot;st0&quot;&gt;&quot;^[a-zA-Z0-9._-]+@[a-zA-Z0-9-]+&lt;/span&gt;&lt;span class=&quot;es0&quot;&gt;&lt;b&gt;\.&lt;/b&gt;&lt;/span&gt;&lt;span class=&quot;st0&quot;&gt;[a-zA-Z.]{2,5}$&quot;&lt;/span&gt;;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: whitesmoke; border: none; margin-left: .25in; mso-border-alt: solid #D0D0D0 .75pt; mso-list: l0 level1 lfo4; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; mso-padding-alt: 0in 0in 0in 0in; padding: 0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;2.&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;; font-stretch: normal; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span class=&quot;re0&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt;$email&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;= &lt;span class=&quot;st0&quot;&gt;&quot;jim@demo.com&quot;&lt;/span&gt;;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: whitesmoke; border: none; margin-left: .25in; mso-border-alt: solid #D0D0D0 .75pt; mso-list: l0 level1 lfo4; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; mso-padding-alt: 0in 0in 0in 0in; padding: 0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;3.&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;; font-stretch: normal; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: whitesmoke; border: none; margin-left: .25in; mso-border-alt: solid #D0D0D0 .75pt; mso-list: l0 level1 lfo4; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; mso-padding-alt: 0in 0in 0in 0in; padding: 0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;4.&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;; font-stretch: normal; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span class=&quot;kw1&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt;if&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt; &lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;a href=&quot;http://www.phpf1.com/manual/eregi&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;&lt;b&gt;&lt;span style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;eregi&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;re0&quot;&gt;$pattern&lt;/span&gt;,&lt;span class=&quot;re0&quot;&gt;$email&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;))&lt;/span&gt; &lt;a href=&quot;http://www.phpf1.com/manual/echo&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;&lt;b&gt;&lt;span style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;echo&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/a&gt; &lt;span class=&quot;st0&quot;&gt;&quot;Match&quot;&lt;/span&gt;;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: whitesmoke; border: none; margin-left: .25in; mso-border-alt: solid #D0D0D0 .75pt; mso-list: l0 level1 lfo4; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; mso-padding-alt: 0in 0in 0in 0in; padding: 0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;5.&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;; font-stretch: normal; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span class=&quot;kw1&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt;else&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt; &lt;a href=&quot;http://www.phpf1.com/manual/echo&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;&lt;b&gt;&lt;span style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;echo&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/a&gt; &lt;span class=&quot;st0&quot;&gt;&quot;Not match&quot;&lt;/span&gt;;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;div style=&quot;background: #F0F0FF; border: solid #D0D0D0 1.0pt; mso-border-alt: solid #D0D0D0 .75pt; mso-element: para-border-div; padding: 0in 0in 0in 0in;&quot;&gt;&lt;pre style=&quot;background: #F0F0FF; border: none; line-height: 12.6pt; mso-border-alt: solid #D0D0D0 .75pt; mso-padding-alt: 0in 0in 0in 0in; padding: 0in; text-align: right;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;&lt;a href=&quot;http://www.phpf1.com/&quot;&gt;PHP F1&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Now let&#39;s see a
detailed pattern syntax reference:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;1&quot; class=&quot;MsoNormalTable&quot; style=&quot;background: #F0F0F0; mso-cellspacing: .7pt; mso-padding-alt: 3.75pt 3.75pt 3.75pt 3.75pt; width: 550px;&quot;&gt;
 &lt;tbody&gt;&lt;tr style=&quot;mso-yfti-firstrow: yes; mso-yfti-irow: 0;&quot;&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Regular expression
  (pattern)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;Match (subject)&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;Not match (subject)&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;Comment&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;mso-yfti-irow: 1;&quot;&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;world&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;Hello world&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;Hello Jim&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;Match if the pattern is present
  anywhere in the subject&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;mso-yfti-irow: 2;&quot;&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;^world&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;world class&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;Hello world&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;Match if the pattern is present at the
  beginning of the subject&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;mso-yfti-irow: 3;&quot;&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;world$&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;Hello world&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;world class&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;Match if the pattern is present at the
  end of the subject&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;mso-yfti-irow: 4;&quot;&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;world/i&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;This WoRLd&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;Hello Jim&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;Makes a search in case insensitive mode&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;mso-yfti-irow: 5;&quot;&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;^world$&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;world&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;Hello world&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;The string contains only the
  &quot;world&quot;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;mso-yfti-irow: 6;&quot;&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;world*&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;worl, world, worlddd&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;wor&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;There is 0 or more &quot;d&quot; after
  &quot;worl&quot;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;mso-yfti-irow: 7;&quot;&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;world+&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;world, worlddd&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;worl&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;There is at least 1 &quot;d&quot; after
  &quot;worl&quot;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;mso-yfti-irow: 8;&quot;&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;world?&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;worl, world, worly&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;wor, wory&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;There is 0 or 1 &quot;d&quot; after
  &quot;worl&quot;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;mso-yfti-irow: 9;&quot;&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;world{1}&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;world&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;worly&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;There is 1 &quot;d&quot; after
  &quot;worl&quot;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;mso-yfti-irow: 10;&quot;&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;world{1,}&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;world, worlddd&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;worly&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;There is 1 ore more &quot;d&quot; after
  &quot;worl&quot;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;mso-yfti-irow: 11;&quot;&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;world{2,3}&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;worldd, worlddd&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;world&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;There are 2 or 3 &quot;d&quot; after
  &quot;worl&quot;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;mso-yfti-irow: 12;&quot;&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;wo(rld)*&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;wo, world, worldold&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;wa&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;There is 0 or more &quot;rld&quot;
  after &quot;wo&quot;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;mso-yfti-irow: 13;&quot;&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;earth|world&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;earth, world&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;sun&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;The string contains the
  &quot;earth&quot; or the &quot;world&quot;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;mso-yfti-irow: 14;&quot;&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;w.rld&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;world, wwrld&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;wrld&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;Any character in place of the dot.&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;mso-yfti-irow: 15;&quot;&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;^.{5}$&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;world, earth&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;sun&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;A string with exactly 5 characters&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;mso-yfti-irow: 16;&quot;&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;[abc]&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;abc, bbaccc&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;sun&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;There is an &quot;a&quot; or
  &quot;b&quot; or &quot;c&quot; in the string&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;mso-yfti-irow: 17;&quot;&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;[a-z]&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;world&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;WORLD&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;There are any lowercase letter in the
  string&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;mso-yfti-irow: 18;&quot;&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;[a-zA-Z]&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;world, WORLD, Worl12&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;123&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;There are any lower- or uppercase
  letter in the string&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr style=&quot;mso-yfti-irow: 19; mso-yfti-lastrow: yes;&quot;&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;[^wW]&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;earth&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;w, W&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
  &lt;td style=&quot;background: white; padding: .75pt .75pt .75pt .75pt;&quot;&gt;
  &lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;The actual character can not be a
  &quot;w&quot; or &quot;W&quot;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
  &lt;/td&gt;
 &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;line-height: 12.6pt; margin: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Step 2 - Complex regular expression
examples&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;div class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;

&lt;hr align=&quot;left&quot; noshade=&quot;&quot; size=&quot;1&quot; style=&quot;color: #dddddd;&quot; width=&quot;100%&quot; /&gt;

&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;

&lt;p align=&quot;right&quot; class=&quot;underlined&quot; style=&quot;line-height: 18.0pt; margin-bottom: 0in; margin-left: 0in; margin-right: 3.75pt; margin-top: 0in; text-align: right; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Arial, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;PHP
regular expression tutorial&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Now as you know the
theory and basic syntax of PHP regular expressions it&#39;s time to create and
analyze some more complex cases.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;strong&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;User name check with
regular expression&lt;/span&gt;&lt;/strong&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;First start with a
user name check. In case of a registration form you may want to control
available user names a bit. Let&#39;s suppose you don&#39;t want to allow any special
character in the name except &quot;_.-&quot; and of course letters and numbers.
Besides this you may want to control the length of the user name to be between
4 and 20.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;First we need to
define the available characters. This can be realised with the following code:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;[a-zA-Z0-9_.-]&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;After that we need to
limit the number of characters with the following code:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;{4,20}&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;At least we need to
put it together:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;^[a-zA-Z-0-9_.-]{4,20}$&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;In case of Perl
compatible regular expression surround it with &#39;/&#39;. At the end the PHP code
looks like this:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;div style=&quot;background: #F0F0FF; border: solid #D0D0D0 1.0pt; mso-border-alt: solid #D0D0D0 .75pt; mso-element: para-border-div; padding: 0in 0in 0in 0in;&quot;&gt;&lt;pre style=&quot;background: #F0F0FF; border: none; line-height: 12.6pt; mso-border-alt: solid #D0D0D0 .75pt; mso-padding-alt: 0in 0in 0in 0in; padding: 0in; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;Code: &lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;div style=&quot;background: whitesmoke; border: solid #D0D0D0 1.0pt; margin-left: .25in; margin-right: 0in; mso-border-alt: solid #D0D0D0 .75pt; mso-element: para-border-div; padding: 0in 0in 0in 0in;&quot;&gt;&lt;pre style=&quot;background: whitesmoke; border: none; margin-left: .25in; mso-border-alt: solid #D0D0D0 .75pt; mso-list: l4 level1 lfo5; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; mso-padding-alt: 0in 0in 0in 0in; padding: 0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;1.&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;; font-stretch: normal; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span class=&quot;re0&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt;$pattern&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp; &lt;/span&gt;= &lt;span class=&quot;st0&quot;&gt;&#39;/^[a-zA-Z0-9_.-]{4,20}$/&#39;&lt;/span&gt;;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: whitesmoke; border: none; margin-left: .25in; mso-border-alt: solid #D0D0D0 .75pt; mso-list: l4 level1 lfo5; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; mso-padding-alt: 0in 0in 0in 0in; padding: 0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;2.&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;; font-stretch: normal; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span class=&quot;re0&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt;$username&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt; = &lt;span class=&quot;st0&quot;&gt;&quot;this.is.a-demo_-&quot;&lt;/span&gt;;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: whitesmoke; border: none; margin-left: .25in; mso-border-alt: solid #D0D0D0 .75pt; mso-list: l4 level1 lfo5; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; mso-padding-alt: 0in 0in 0in 0in; padding: 0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;3.&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;; font-stretch: normal; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: whitesmoke; border: none; margin-left: .25in; mso-border-alt: solid #D0D0D0 .75pt; mso-list: l4 level1 lfo5; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; mso-padding-alt: 0in 0in 0in 0in; padding: 0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;4.&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;; font-stretch: normal; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span class=&quot;kw1&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt;if&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt; &lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;a href=&quot;http://www.phpf1.com/manual/preg_match&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;&lt;b&gt;&lt;span style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;preg_match&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;re0&quot;&gt;$pattern&lt;/span&gt;,&lt;span class=&quot;re0&quot;&gt;$username&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;))&lt;/span&gt; &lt;a href=&quot;http://www.phpf1.com/manual/echo&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;&lt;b&gt;&lt;span style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;echo&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/a&gt; &lt;span class=&quot;st0&quot;&gt;&quot;Match&quot;&lt;/span&gt;;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: whitesmoke; border: none; margin-left: .25in; mso-border-alt: solid #D0D0D0 .75pt; mso-list: l4 level1 lfo5; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; mso-padding-alt: 0in 0in 0in 0in; padding: 0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;5.&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;; font-stretch: normal; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span class=&quot;kw1&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt;else&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt; &lt;a href=&quot;http://www.phpf1.com/manual/echo&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;&lt;b&gt;&lt;span style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;echo&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/a&gt; &lt;span class=&quot;st0&quot;&gt;&quot;Not match&quot;&lt;/span&gt;;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;div style=&quot;background: #F0F0FF; border: solid #D0D0D0 1.0pt; mso-border-alt: solid #D0D0D0 .75pt; mso-element: para-border-div; padding: 0in 0in 0in 0in;&quot;&gt;&lt;pre style=&quot;background: #F0F0FF; border: none; line-height: 12.6pt; mso-border-alt: solid #D0D0D0 .75pt; mso-padding-alt: 0in 0in 0in 0in; padding: 0in; text-align: right;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&amp;nbsp;E&lt;strong&gt;&lt;span style=&quot;font-family: &amp;quot;Verdana&amp;quot;,sans-serif;&quot;&gt;mail check with regular
expression&amp;nbsp;&lt;/span&gt;&lt;/strong&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;At least let&#39;s see
how we can check an email address with regular expressions. First take a
careful look at the following example emails:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; mso-list: l5 level1 lfo6; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;john.demo@demo.com&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; mso-list: l5 level1 lfo6; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;john@demo.us&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;line-height: 12.6pt; mso-list: l5 level1 lfo6; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;john_123.demo_.name@demo.info&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;What we can see is
that the @ is a mandatory element in an email. Besides this there must be some
character before and some after it. More precisely there must be a valid domain
name after the @. &amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;So the first part
must be a string with letters a numbers or some special characters like _-. In
pattern we can write it as follows:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;^[a-zA-Z0-9_.-]+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;The domain name
always have a let&#39;s say name and tld. The tld is the .com, .us. .info and the
name can be any string with valid characters. It means that the domain pattern
looks like this:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;[a-zA-Z0-9-]+\.[a-zA-Z.]{2,4}$&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Now we only need to
put together the 2 parts with the @ and get the complete pattern:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;^[a-zA-Z0-9._-]+@[a-zA-Z0-9-]+\.[a-zA-Z.]{2,5}$&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;line-height: 18.0pt; text-indent: 3.75pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;The PHP code looks
like this:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;div style=&quot;background: #F0F0FF; border: solid #D0D0D0 1.0pt; mso-border-alt: solid #D0D0D0 .75pt; mso-element: para-border-div; padding: 0in 0in 0in 0in;&quot;&gt;&lt;pre style=&quot;background: #F0F0FF; border: none; line-height: 12.6pt; mso-border-alt: solid #D0D0D0 .75pt; mso-padding-alt: 0in 0in 0in 0in; padding: 0in; text-indent: 3.75pt;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; font-family: Verdana, sans-serif;&quot;&gt;Code: &lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;div style=&quot;background: whitesmoke; border: solid #D0D0D0 1.0pt; margin-left: .25in; margin-right: 0in; mso-border-alt: solid #D0D0D0 .75pt; mso-element: para-border-div; padding: 0in 0in 0in 0in;&quot;&gt;&lt;pre style=&quot;background: whitesmoke; border: none; margin-left: .25in; mso-border-alt: solid #D0D0D0 .75pt; mso-list: l1 level1 lfo7; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; mso-padding-alt: 0in 0in 0in 0in; padding: 0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;1.&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;; font-stretch: normal; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span class=&quot;re0&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt;$pattern&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt; = &lt;span class=&quot;st0&quot;&gt;&#39;/^[a-zA-Z0-9._-]+@[a-zA-Z0-9-]+&lt;/span&gt;&lt;span class=&quot;es0&quot;&gt;&lt;b&gt;\.&lt;/b&gt;&lt;/span&gt;&lt;span class=&quot;st0&quot;&gt;[a-zA-Z.]{2,5}$/&#39;&lt;/span&gt;;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: whitesmoke; border: none; margin-left: .25in; mso-border-alt: solid #D0D0D0 .75pt; mso-list: l1 level1 lfo7; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; mso-padding-alt: 0in 0in 0in 0in; padding: 0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;2.&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;; font-stretch: normal; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span class=&quot;re0&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt;$email&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt;&lt;span style=&quot;mso-spacerun: yes;&quot;&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;= &lt;span class=&quot;st0&quot;&gt;&quot;john123.demo_.name@demo.info&quot;&lt;/span&gt;;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: whitesmoke; border: none; margin-left: .25in; mso-border-alt: solid #D0D0D0 .75pt; mso-list: l1 level1 lfo7; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; mso-padding-alt: 0in 0in 0in 0in; padding: 0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;3.&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;; font-stretch: normal; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: whitesmoke; border: none; margin-left: .25in; mso-border-alt: solid #D0D0D0 .75pt; mso-list: l1 level1 lfo7; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; mso-padding-alt: 0in 0in 0in 0in; padding: 0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;4.&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;; font-stretch: normal; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span class=&quot;kw1&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt;if&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt; &lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;a href=&quot;http://www.phpf1.com/manual/preg_match&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;&lt;b&gt;&lt;span style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;preg_match&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;br0&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;re0&quot;&gt;$pattern&lt;/span&gt;,&lt;span class=&quot;re0&quot;&gt;$email&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;))&lt;/span&gt; &lt;a href=&quot;http://www.phpf1.com/manual/echo&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;&lt;b&gt;&lt;span style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;echo&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/a&gt; &lt;span class=&quot;st0&quot;&gt;&quot;Match&quot;&lt;/span&gt;;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: whitesmoke; border: none; margin-left: .25in; mso-border-alt: solid #D0D0D0 .75pt; mso-list: l1 level1 lfo7; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; mso-padding-alt: 0in 0in 0in 0in; padding: 0in; text-indent: -.25in;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;mso-list: Ignore;&quot;&gt;5.&lt;span style=&quot;font-family: &amp;quot;Times New Roman&amp;quot;; font-stretch: normal; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal;&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span class=&quot;kw1&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt;else&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt; &lt;a href=&quot;http://www.phpf1.com/manual/echo&quot;&gt;&lt;span class=&quot;kw3&quot;&gt;&lt;b&gt;&lt;span style=&quot;color: black; mso-color-alt: windowtext;&quot;&gt;echo&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/a&gt; &lt;span class=&quot;st0&quot;&gt;&quot;Not match&quot;&lt;/span&gt;;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;</description><link>https://vikramsomai.blogspot.com/2022/01/php-regular-expressions.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6209014571885946851.post-5234444286415994376</guid><pubDate>Sat, 01 Jan 2022 08:33:00 +0000</pubDate><atom:updated>2022-01-01T14:03:32.671+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Python</category><title>Python function to create and print a list where the values are square of numbers </title><description>&lt;p&gt;&lt;span style=&quot;background-color: white; font-family: Helvetica;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Python function to create and print a list where the values are square of numbers between 1 and 20&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;background-color: white; font-family: Helvetica;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;b&gt;Method 1:-&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;pre style=&quot;background: #ffffff; color: black;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;def printValues&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;:&lt;/span&gt;
    l &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; list&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
    &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;for&lt;/span&gt; i in range&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;21&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;:&lt;/span&gt;
        l&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;append&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;*&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;*&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;2&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
    print&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;l&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
 
printValues&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: #ffffff; color: black;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;b&gt;output:-&lt;/b&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;[1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400]
&amp;gt;&amp;gt;&amp;gt; &lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;b&gt;Method 2:-&lt;/b&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;
&lt;/span&gt;&lt;/pre&gt;&lt;p&gt;&lt;/p&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;color: #603000;&quot;&gt;sqrt&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;elem&lt;span style=&quot;color: #808030;&quot;&gt;*&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;*&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;2&lt;/span&gt; &lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;for&lt;/span&gt; elem in range&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;20&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt; 
print&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #603000;&quot;&gt;sqrt&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt; 
&lt;/span&gt;&lt;/pre&gt;&lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;span style=&quot;background-color: white; font-family: Helvetica;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;b&gt;output:-&lt;/b&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;[1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361]
&amp;gt;&amp;gt;&amp;gt; &lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Method 3:-&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;pre style=&quot;background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; background-position: initial; background-repeat: initial; background-size: initial;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;sqr_list &lt;span style=&quot;color: #808030;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #808030;&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;]&lt;/span&gt; 
&lt;span style=&quot;color: maroon; font-weight: bold;&quot;&gt;for&lt;/span&gt; i in range&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #008c00;&quot;&gt;20&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt;&lt;span style=&quot;color: purple;&quot;&gt;:&lt;/span&gt; 
  sqr_list&lt;span style=&quot;color: #808030;&quot;&gt;.&lt;/span&gt;append&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;*&lt;/span&gt;i&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt; 
 
print&lt;span style=&quot;color: #808030;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #808030;&quot;&gt;*&lt;/span&gt;sqr_list&lt;span style=&quot;color: #808030;&quot;&gt;)&lt;/span&gt; 
&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; background-position: initial; background-repeat: initial; background-size: initial;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; background-position: initial; background-repeat: initial; background-size: initial;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;b&gt;output:-&lt;/b&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; background-position: initial; background-repeat: initial; background-size: initial;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;1 4 9 16 25 36 49 64 81 100 121 144 169 196 225 256 289 324 361
&amp;gt;&amp;gt;&amp;gt; &lt;/span&gt;&lt;/pre&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(255, 255, 255);&quot;&gt;&lt;pre style=&quot;background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; background-position: initial; background-repeat: initial; background-size: initial;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;b&gt;tags:-&lt;/b&gt;&lt;/span&gt;&lt;/pre&gt;&lt;p style=&quot;background-attachment: initial; background-clip: initial; background-image: initial; background-origin: initial; background-position: initial; background-repeat: initial; background-size: initial; text-align: left;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;write a python function to create and print a list where the values are square of numbers&lt;/span&gt;&lt;/p&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/pre&gt;</description><link>https://vikramsomai.blogspot.com/2022/01/python-function-to-print-list-square-numbers.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6209014571885946851.post-3670685939103434647</guid><pubDate>Sat, 01 Jan 2022 05:34:00 +0000</pubDate><atom:updated>2022-01-01T11:04:07.364+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">mysql</category><title>MySQL Alias</title><description>&lt;p&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #535353; text-transform: uppercase;&quot;&gt;MYSQL:&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;tutorialtitle&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #4b6692; text-transform: uppercase;&quot;&gt;ALIASES&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.05pt; margin-bottom: 7.9pt; margin-left: 0in; margin-right: 0in; margin-top: 0in; margin: 0in 0in 7.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;This MySQL tutorial explains
how to use MySQL&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;ALIASES&lt;/strong&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;(temporary names for columns or
tables) with syntax and examples.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.9pt; margin-left: 0in; margin-right: 0in; margin-top: 22.5pt; margin: 22.5pt 0in 7.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #535353; text-transform: uppercase;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;DESCRIPTION&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p style=&quot;background: white; line-height: 16.05pt; margin-bottom: 7.9pt; margin-left: 0in; margin-right: 0in; margin-top: 0in; margin: 0in 0in 7.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;MySQL ALIASES can be used to
create a temporary name for columns or tables.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: #333333; line-height: 16.05pt; mso-list: l1 level1 lfo1; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;COLUMN ALIASES are used to make column headings in
     your result set easier to read.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: white; color: #333333; line-height: 16.05pt; mso-list: l1 level1 lfo1; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;TABLE ALIASES are used to shorten your SQL to make
     it easier to read or when you are performing a self join (ie: listing the
     same table more than once in the FROM clause).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div&gt;&lt;h3 class=&quot;h3&quot; style=&quot;background-color: white; color: #610b4b; line-height: 1.3em; text-align: justify;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;Advantages of MySQL Aliases&lt;/span&gt;&lt;/h3&gt;&lt;p style=&quot;background-color: white; color: #333333; text-align: justify;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;Following are the advantage of an alias in MySQL:&lt;/span&gt;&lt;/p&gt;&lt;ul class=&quot;points&quot; style=&quot;background-color: white; color: #333333; line-height: 24px; list-style: circle; text-align: justify;&quot;&gt;&lt;li style=&quot;color: black; line-height: 25px; margin-top: 4px; padding: 0.2em;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;It is preferred in the case when more than one table is going to use in a query.&lt;/span&gt;&lt;/li&gt;&lt;li style=&quot;color: black; line-height: 25px; margin-top: 4px; padding: 0.2em;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;It provides a very useful and flexible feature that allows us to achieve complex tasks quickly.&lt;/span&gt;&lt;/li&gt;&lt;li style=&quot;color: black; line-height: 25px; margin-top: 4px; padding: 0.2em;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;It makes the column or table name more readable.&lt;/span&gt;&lt;/li&gt;&lt;li style=&quot;color: black; line-height: 25px; margin-top: 4px; padding: 0.2em;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;It is useful when you use the function in the query.&lt;/span&gt;&lt;/li&gt;&lt;li style=&quot;color: black; line-height: 25px; margin-top: 4px; padding: 0.2em;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;It can also allow us to combines two or more columns.&lt;/span&gt;&lt;/li&gt;&lt;li style=&quot;color: black; line-height: 25px; margin-top: 4px; padding: 0.2em;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;It is also useful when the column names are big or not readable.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.9pt; margin-left: 0in; margin-right: 0in; margin-top: 22.5pt; margin: 22.5pt 0in 7.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #535353; text-transform: uppercase;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;SYNTAX&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p style=&quot;background: white; line-height: 16.05pt; margin-bottom: 7.9pt; margin-left: 0in; margin-right: 0in; margin-top: 0in; margin: 0in 0in 7.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;The syntax to ALIAS A COLUMN
in MySQL is:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;div style=&quot;background: rgb(242, 241, 255); border: 1pt solid rgb(204, 204, 204); mso-border-alt: solid #CCCCCC .75pt; mso-element: para-border-div; padding: 8pt;&quot;&gt;&lt;pre style=&quot;background: rgb(242, 241, 255); border: none; margin-bottom: 7.9pt; mso-border-alt: solid #CCCCCC .75pt; mso-padding-alt: 8.0pt 8.0pt 8.0pt 8.0pt; padding: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;column_name [ AS ] alias_name&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p style=&quot;background: white; line-height: 16.05pt; margin-bottom: 7.9pt; margin-left: 0in; margin-right: 0in; margin-top: 0in; margin: 0in 0in 7.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;OR&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.05pt; margin-bottom: 7.9pt; margin-left: 0in; margin-right: 0in; margin-top: 0in; margin: 0in 0in 7.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;The syntax to ALIAS A TABLE
in MySQL is:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;div style=&quot;background: rgb(242, 241, 255); border: 1pt solid rgb(204, 204, 204); mso-border-alt: solid #CCCCCC .75pt; mso-element: para-border-div; padding: 8pt;&quot;&gt;&lt;pre style=&quot;background: rgb(242, 241, 255); border: none; margin-bottom: 7.9pt; mso-border-alt: solid #CCCCCC .75pt; mso-padding-alt: 8.0pt 8.0pt 8.0pt 8.0pt; padding: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;table_name [ AS ] alias_name&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;h3 style=&quot;background: white; margin-bottom: 7.9pt; margin-left: 0in; margin-right: 0in; margin-top: 22.5pt; margin: 22.5pt 0in 7.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333; font-weight: normal;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;Parameters or
Arguments&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; margin-top: 7.5pt;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #535353;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;column_name&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; margin-left: 0.5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;The
original name of the column that you wish to alias.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; margin-top: 7.5pt;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #535353;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;table_name&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; margin-left: 0.5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;The
original name of the table that you wish to alias.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; margin-top: 7.5pt;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #535353;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;AS&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; margin-left: 0.5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;Optional.
Most programmers will specify the&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;em&gt;AS&lt;/em&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;keyword when aliasing a column name,
but not when aliasing a table name. Whether you specify the&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;em&gt;AS&lt;/em&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;keyword or not has no impact on the
alias in MySQL. It is a personal choice in MySQL, unlike other databases. (Our
examples will use&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;em&gt;AS&lt;/em&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;when aliasing a column name but omit&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;em&gt;AS&lt;/em&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;when aliasing a table name.)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; margin-top: 7.5pt;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #535353;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;alias_name&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;background: white; margin-left: 0.5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;The
temporary name to assign to the column or table.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: whitesmoke; line-height: 16.05pt; margin-bottom: 7.9pt; margin-left: 0in; margin-right: 0in; margin-top: 0in; margin: 0in 0in 7.9pt;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;&lt;strong&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt;Note:&lt;/span&gt;&lt;/strong&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul type=&quot;disc&quot;&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: whitesmoke; color: black; line-height: 16.05pt; mso-list: l0 level1 lfo2; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;If the&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;em&gt;alias_name&lt;/em&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;contains spaces, you must enclose
     the&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;em&gt;alias_name&lt;/em&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;in quotes.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: whitesmoke; color: black; line-height: 16.05pt; mso-list: l0 level1 lfo2; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;It is acceptable to use spaces when
     you are aliasing a column name. However, it is not generally good practice
     to use spaces when you are aliasing a table name.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
 &lt;li class=&quot;MsoNormal&quot; style=&quot;background: whitesmoke; color: black; line-height: 16.05pt; mso-list: l0 level1 lfo2; mso-margin-bottom-alt: auto; mso-margin-top-alt: auto; tab-stops: list .5in;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;The&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;em&gt;alias_name&lt;/em&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;is only valid within the scope of
     the SQL statement.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.9pt; margin-left: 0in; margin-right: 0in; margin-top: 22.5pt; margin: 22.5pt 0in 7.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #535353; text-transform: uppercase;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;EXAMPLE - ALIAS A COLUMN&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p style=&quot;background: white; line-height: 16.05pt; margin-bottom: 7.9pt; margin-left: 0in; margin-right: 0in; margin-top: 0in; margin: 0in 0in 7.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;Generally, aliases are used
to make the column headings in your result set easier to read. For example,
when using the MAX function, you might alias the result of the MAX function in
MySQL.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.05pt; margin-bottom: 7.9pt; margin-left: 0in; margin-right: 0in; margin-top: 0in; margin: 0in 0in 7.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;For example:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;div style=&quot;background: rgb(242, 241, 255); border: 1pt solid rgb(204, 204, 204); mso-border-alt: solid #CCCCCC .75pt; mso-element: para-border-div; padding: 8pt;&quot;&gt;&lt;pre style=&quot;background: rgb(242, 241, 255); border: none; margin-bottom: 7.9pt; mso-border-alt: solid #CCCCCC .75pt; mso-padding-alt: 8.0pt 8.0pt 8.0pt 8.0pt; padding: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;SELECT department, MAX(salary) AS highest&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(242, 241, 255); border: none; margin-bottom: 7.9pt; mso-border-alt: solid #CCCCCC .75pt; mso-padding-alt: 8.0pt 8.0pt 8.0pt 8.0pt; padding: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;FROM employees&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(242, 241, 255); border: none; margin-bottom: 7.9pt; mso-border-alt: solid #CCCCCC .75pt; mso-padding-alt: 8.0pt 8.0pt 8.0pt 8.0pt; padding: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;GROUP BY department;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p style=&quot;background: white; line-height: 16.05pt; margin-bottom: 7.9pt; margin-left: 0in; margin-right: 0in; margin-top: 0in; margin: 0in 0in 7.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;In this example, we&#39;ve
aliased the MAX(salary) field as&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;em&gt;highest&lt;/em&gt;. As a result,&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;em&gt;highest&lt;/em&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;will display as the heading for the
second column when the result set is returned. Because our&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;em&gt;alias_name&lt;/em&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;did not include any spaces, we are not
required to enclose the&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;em&gt;alias_name&lt;/em&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;in quotes.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.05pt; margin-bottom: 7.9pt; margin-left: 0in; margin-right: 0in; margin-top: 0in; margin: 0in 0in 7.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;However, it would have been
perfectly acceptable to write this example using quotes as follows:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;div style=&quot;background: rgb(242, 241, 255); border: 1pt solid rgb(204, 204, 204); mso-border-alt: solid #CCCCCC .75pt; mso-element: para-border-div; padding: 8pt;&quot;&gt;&lt;pre style=&quot;background: rgb(242, 241, 255); border: none; margin-bottom: 7.9pt; mso-border-alt: solid #CCCCCC .75pt; mso-padding-alt: 8.0pt 8.0pt 8.0pt 8.0pt; padding: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;SELECT department, MAX(salary) AS &quot;highest&quot;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(242, 241, 255); border: none; margin-bottom: 7.9pt; mso-border-alt: solid #CCCCCC .75pt; mso-padding-alt: 8.0pt 8.0pt 8.0pt 8.0pt; padding: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;FROM employees&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(242, 241, 255); border: none; margin-bottom: 7.9pt; mso-border-alt: solid #CCCCCC .75pt; mso-padding-alt: 8.0pt 8.0pt 8.0pt 8.0pt; padding: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;GROUP BY department;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p style=&quot;background: white; line-height: 16.05pt; margin-bottom: 7.9pt; margin-left: 0in; margin-right: 0in; margin-top: 0in; margin: 0in 0in 7.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;Next, let&#39;s look at an example
where we are required to enclose the&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;em&gt;alias_name&lt;/em&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;in quotes.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.05pt; margin-bottom: 7.9pt; margin-left: 0in; margin-right: 0in; margin-top: 0in; margin: 0in 0in 7.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;For example:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;div style=&quot;background: rgb(242, 241, 255); border: 1pt solid rgb(204, 204, 204); mso-border-alt: solid #CCCCCC .75pt; mso-element: para-border-div; padding: 8pt;&quot;&gt;&lt;pre style=&quot;background: rgb(242, 241, 255); border: none; margin-bottom: 7.9pt; mso-border-alt: solid #CCCCCC .75pt; mso-padding-alt: 8.0pt 8.0pt 8.0pt 8.0pt; padding: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;SELECT department, MAX(salary) AS &quot;highest salary&quot;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(242, 241, 255); border: none; margin-bottom: 7.9pt; mso-border-alt: solid #CCCCCC .75pt; mso-padding-alt: 8.0pt 8.0pt 8.0pt 8.0pt; padding: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;FROM employees&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(242, 241, 255); border: none; margin-bottom: 7.9pt; mso-border-alt: solid #CCCCCC .75pt; mso-padding-alt: 8.0pt 8.0pt 8.0pt 8.0pt; padding: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;GROUP BY department;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p style=&quot;background: white; line-height: 16.05pt; margin-bottom: 7.9pt; margin-left: 0in; margin-right: 0in; margin-top: 0in; margin: 0in 0in 7.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;In this example, we&#39;ve
aliased the MAX(salary) field as &quot;highest salary&quot;. Since there are spaces
in this&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;em&gt;alias_name&lt;/em&gt;,
&quot;highest salary&quot; must be enclosed in quotes.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;h2 style=&quot;background: white; margin-bottom: 7.9pt; margin-left: 0in; margin-right: 0in; margin-top: 22.5pt; margin: 22.5pt 0in 7.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #535353; text-transform: uppercase;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;EXAMPLE - ALIAS A TABLE&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;

&lt;p style=&quot;background: white; line-height: 16.05pt; margin-bottom: 7.9pt; margin-left: 0in; margin-right: 0in; margin-top: 0in; margin: 0in 0in 7.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;When you create an alias on a
table, it is either because you plan to list the same table name more than once
in the FROM clause (ie: self join), or you want to shorten the table name to
make the SQL statement shorter and easier to read.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.05pt; margin-bottom: 7.9pt; margin-left: 0in; margin-right: 0in; margin-top: 0in; margin: 0in 0in 7.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;Let&#39;s look at an example of
how to alias a table name in MySQL.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.05pt; margin-bottom: 7.9pt; margin-left: 0in; margin-right: 0in; margin-top: 0in; margin: 0in 0in 7.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;For example:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;div style=&quot;background: rgb(242, 241, 255); border: 1pt solid rgb(204, 204, 204); mso-border-alt: solid #CCCCCC .75pt; mso-element: para-border-div; padding: 8pt;&quot;&gt;&lt;pre style=&quot;background: rgb(242, 241, 255); border: none; margin-bottom: 7.9pt; mso-border-alt: solid #CCCCCC .75pt; mso-padding-alt: 8.0pt 8.0pt 8.0pt 8.0pt; padding: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;SELECT p.product_id, p.product_name, suppliers.supplier_name&lt;br /&gt;
FROM products p&lt;br /&gt;
INNER JOIN suppliers&lt;br /&gt;
ON p.supplier_id = suppliers.supplier_id&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(242, 241, 255); border: none; margin-bottom: 7.9pt; mso-border-alt: solid #CCCCCC .75pt; mso-padding-alt: 8.0pt 8.0pt 8.0pt 8.0pt; padding: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;ORDER BY p.product_name ASC, suppliers.supplier_name DESC;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p style=&quot;background: white; line-height: 16.05pt; margin-bottom: 7.9pt; margin-left: 0in; margin-right: 0in; margin-top: 0in; margin: 0in 0in 7.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;In this example, we&#39;ve
created an alias for the&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;em&gt;products&lt;/em&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;table called&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;em&gt;p&lt;/em&gt;.
Now within this SQL statement, we can refer to the&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;em&gt;products&lt;/em&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;table as&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;em&gt;p&lt;/em&gt;.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.05pt; margin-bottom: 7.9pt; margin-left: 0in; margin-right: 0in; margin-top: 0in; margin: 0in 0in 7.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;When creating table aliases,
it is not necessary to create aliases for all of the tables listed in the FROM
clause. You can choose to create aliases on any or all of the tables.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p style=&quot;background: white; line-height: 16.05pt; margin-bottom: 7.9pt; margin-left: 0in; margin-right: 0in; margin-top: 0in; margin: 0in 0in 7.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;For example, we could modify
our example above and create an alias for the&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;em&gt;suppliers&lt;/em&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;table as well.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;div style=&quot;background: rgb(242, 241, 255); border: 1pt solid rgb(204, 204, 204); mso-border-alt: solid #CCCCCC .75pt; mso-element: para-border-div; padding: 8pt;&quot;&gt;&lt;pre style=&quot;background: rgb(242, 241, 255); border: none; margin-bottom: 7.9pt; mso-border-alt: solid #CCCCCC .75pt; mso-padding-alt: 8.0pt 8.0pt 8.0pt 8.0pt; padding: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;SELECT p.product_id, p.product_name, s.supplier_name&lt;br /&gt;
FROM products p&lt;br /&gt;
INNER JOIN suppliers s&lt;br /&gt;
ON p.supplier_id = s.supplier_id&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre style=&quot;background: rgb(242, 241, 255); border: none; margin-bottom: 7.9pt; mso-border-alt: solid #CCCCCC .75pt; mso-padding-alt: 8.0pt 8.0pt 8.0pt 8.0pt; padding: 0in;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;ORDER BY p.product_name ASC, s.supplier_name DESC;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p style=&quot;background: white; line-height: 16.05pt; margin-bottom: 7.9pt; margin-left: 0in; margin-right: 0in; margin-top: 0in; margin: 0in 0in 7.9pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: #333333;&quot;&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;Now we have an alias for&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;em&gt;suppliers&lt;/em&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;table called&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;em&gt;s&lt;/em&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;as well as the alias for the&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;em&gt;products&lt;/em&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;table called&lt;span class=&quot;apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;em&gt;p&lt;/em&gt;.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&lt;span style=&quot;font-family: Poppins; font-size: medium;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;</description><link>https://vikramsomai.blogspot.com/2022/01/mysql-alias.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item></channel></rss>