---
title: "JQuery fadeTo method"  
description: "In JQuery fadeTo () method used to fade element on page. In this article I am trying to show you, how we can implement fadeTo method on the page. For"  
author: "Sachindra Singh"  
published: 2011-02-22  
updated: 2020-03-04  
canonical: https://www.mindstick.com/articles/463/jquery-fadeto-method  
category: "jquery"  
tags: ["jquery"]  
reading_time: 1 minute  

---

# JQuery fadeTo method

In JQuery fadeTo () method used to fade element on page. In this article I am trying to show you, how we can implement fadeTo method on the page. For example I have two images on page and I want to images fade from page to given opacity.\

##### Syntax: $(“target”).fadeTo (Time duration, Opacity);

**Time duration**=Pass time duration in string (“fast or medium or slow”)

**Opacity**=Opacity should be between 0 and 1.

##### Code:

```
  <script type="text/javascript" src="jquery.min.js">      <script type="text/javascript">         $(document).ready(function        {            $("button").click(function            {                $("img").fadeTo("medium", 0.15); //img will fade by using fadeTo function given time duration and opacity            });         });     </script> </head><body>     <h2>         Jquery fadeTo method</h2>     <table width="300">         <tr>            <td>                <img src="Desert.jpg" width="200" height="100" />            </td>            <td>                <img src="Jellyfish.jpg" width="200" height="100" >            </td>         </tr>         <tr>            <td align="center" colspan="2">                <button>                    Click to fade</button>            </td>         </tr>     </table></body>
```

##### Screenshot

![JQuery fadeTo method](https://www.mindstick.com/mindstickarticle/4d2acc55-de69-48d3-a92b-5277b81fbeea/images/c9d4de9a-f1f0-4603-a44f-0a9d394da752.png)

When I will click on button image will be start to fade from page as shown below:

Screenshot

![JQuery fadeTo method](https://www.mindstick.com/mindstickarticle/4d2acc55-de69-48d3-a92b-5277b81fbeea/images/3b610e32-715c-49fb-8d89-315ea8810213.png)

\

---

Original Source: https://www.mindstick.com/articles/463/jquery-fadeto-method

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
